SmartGWT v 2.5
Internet Explorer 8
When using a ComboBoxItem in conjunction with a Hint, and the initial value is null, when you select an item from the drop-down list the display clears after selecting the item. The new value does flicker in the field for a second but then disappears.
Code Example:
Obviously there is more code around it, but this will get my gist across. The issue does not occur if the value was not-null when you select an item from the list, only when it is null.
Previously we had a similar problem with setEmptyDisplayValue, but now setEmptyDisplayValue works so we can get around it. There are no issues reported in console or via JS errors, just unexpected behavior.
Thanks...Mike
Internet Explorer 8
When using a ComboBoxItem in conjunction with a Hint, and the initial value is null, when you select an item from the drop-down list the display clears after selecting the item. The new value does flicker in the field for a second but then disappears.
Code Example:
Code:
ComboBoxItem ci = new ComboBoxItem("myID", "My Title"); ci.setHint("Select..."); ci.setShowHintInField(true);
Previously we had a similar problem with setEmptyDisplayValue, but now setEmptyDisplayValue works so we can get around it. There are no issues reported in console or via JS errors, just unexpected behavior.
Thanks...Mike
Comment