gpt4 book ai didi

java - SmartGWT 中的 ListGrid.setEditorCustomizer

转载 作者:行者123 更新时间:2023-11-29 09:11:37 25 4
gpt4 key购买 nike

<分区>

Possible Duplicate:
Smartgwt selectitem key value issue

我正在使用 setEditorCustomizer 为 ListGrid 中的某些字段设置自定义编辑器,我的具体问题在 SelectItem 上

像这样:

grid.setEditorCustomizer(new ListGridEditorCustomizer() {
public FormItem getEditor(ListGridEditorContext context) {
SelectItem selectItem = new SelectItem();
LinkedHashMap<String, String> valuesMap = new LinkedHashMap<String, String>();
valuesMap.put("0","some text");
valuesMap.put("1","other text");
selectItem.setValueMap(valuesMap);
}
}

请注意,我没有为每一行创建选择项。

编辑行时一切正常,我在下拉列表中看到“一些文本”和“其他文本”,但当我不编辑值时,我看到相应的键而不是值。

我已经搜索了 javadoc 但找不到任何内容,如果有任何不明确的地方请询问,我会添加。

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com