Ticket #2120 (closed defect: fixed)
Value can be removed if ComboBox = nullSelectionAllowed(false)
| Reported by: | Mauno Haukila | Owned by: | Marc Englund |
|---|---|---|---|
| Priority: | minor | Milestone: | User Interface Library 5.2.10 |
| Component: | gwt-adapter-client | Version: | 5.2.8 |
| Keywords: | select, combobox, setnullselectionallowed | Cc: | |
| Known Issue description: | |||
| Hours estimate: | Deadline (dd.mm.yyyy): | ||
| Known Issue version (since): | Known Issue title: | ||
| Hours done: | Depends to: | ||
| Affects documentation: | no | ||
| Known Issue workaround: | |||
| Affects release notes: | no | Contract: | |
Description (last modified by Mauno Haukila) (diff)
Quite small bug that I happened to notice on accident: If you make Select eg:
final Select select = new Select("Test Select");
select.setWidth("100px");
select.setImmediate(true);
select.setNullSelectionAllowed(false);
select.addItem("1");
select.addItem("2");
select.addItem("3");
select.setValue("1");
You should not be able not set value to "" in UI and with normal use you cant.
But if you select the selected value from ComboBox?'s input and then press delete and immediately tab, value stays at "" and no value change is sent to server. Ui shows "" and server says value is what you previously selected.
This happens with Fx3.0
Change History
Note: See
TracTickets for help on using
tickets.
