My python code is:
status = fields.Selection (string = 'Status', copy = False, selection = [('new', 'New'), ('canceled', 'Canceled'), ('accept', 'Accepted'), ( 'sold', 'SOLD')], default = 'new')
My xml is:
I only get the display of the current status of each record, instead of a list of status with current status highlighted. Help is highly appreciated.