Group: StrataFrame Developers
Posts: 3K,
Visits: 2.5K
|
When you add a new record to the business object, the combo box attempts to refresh to the value of the field behind the combo box, which is most likely a 0 or an empty string. So, when it refreshes to this value, if the value does not exist within the combo box, the combo box throws up because there is no such value for it to select. That's why we created the TopMostItem on our combo box, because if the value didn't exist, then it would throw errors when the data was pushed to the control. So, after you build the data table for the combo box, add an extra row to it that has a value of String.Empty or 0, or whatever the value is within your new row, and you'll be good.
|