我在IE9中使用SmartGwt 3.0,GWT 2.4.0。
我有一个smartgwt treeGrid,我在其中自定义字段过滤器为SelectItem
,如下所示:
...
TreeGridField field = new TreeGridField();
SelectItem selectItem = new SelectItem();
selectItem .setShowTitle(false);
LinkedHashMap<String, String> lmapKeyLabel = new LinkedHashMap<String, String>();
for(...) {
lmapStatusLabel.put(key, "<b>"+label+"</b>");
}
selectItem.setValueMap(lmapKeyLabel);
field.setFilterEditorType(selectItem);
treeGrid.refreshFields();
...
SelectItem
上显示的值是键,而不是标签。
ComboBoxItem
也是如此。
这是否发生在某人身上?我做错了吗?
任何人都可以帮助我吗?
谢谢你, MIF