I am not sure exactly how general this bug is, so I will explain in detail how I create it.
In general I am executing a search on a form with combobox fields.
when the data is displayed the values in the comboboxes appear blank. When I click on the record and make it active, then the value is visible.
I have a method that plugs in the search values and exectues the query.
here is that code:
controller.find()
asset = globals.asset;
room = “#%” + globals.room + “%”;
type = globals.type;
ip = “%” + globals.ip + “%”;
jack = “#%” + globals.jack + “%”;
lab = globals.lab;
mac = “#%”+globals.mac+“%”;
owner = “#%”+globals.owner+“%”;
device = “#%” + globals.device + “%”;
controller.search(true, false)
The globals are dataproviders for a duplicate set of fields in the header just above the fields in the body that display the foundset.
The problem only happens when I search by Type or Lab which are comboboxes in both the header and footer.