pepez
6 Apr 2009, 1:57 AM
I have a ListStore for the ComboBox and I would like to have an item there with < > characters. This however is not rendered properly in the drop down list.
final ListStore<ModelData> store = new ListStore<ModelData>();
store.add(DataBinding.bindMyData(datas));
private final ModelData none = new BaseModelData();
none.set("name", "<none>");
store.add(none);
Shouldn't GXT escape the input?
final ListStore<ModelData> store = new ListStore<ModelData>();
store.add(DataBinding.bindMyData(datas));
private final ModelData none = new BaseModelData();
none.set("name", "<none>");
store.add(none);
Shouldn't GXT escape the input?