选择项目后,在 EditorGridPanel 中保留 Ext.form.Combobox 上的 displayField 吗?

发布于 2024-10-31 16:05:36 字数 177 浏览 1 评论 0原文

我在列模型编辑器上使用 Ext.form.Combobox,并将此 ColumnModel 放入 EditorGridPanel 中。当我在组合框中选择一个项目后,组合框中显示的文本始终是 valueField,而不是 displayField。选择任何项目后,如何在 EditorGridPanel 中的组合框中保留显示字段? 太感谢了。

I am using an Ext.form.Combobox on a column model editor, and this ColumnModel is put in to an EditorGridPanel. After I select an item in combobox, the text displayed on combobox is always the valueField, not displayField. How can I keep the displayField on combobox in EditorGridPanel after selecting any item?
Thank you so much.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

枕头说它不想醒 2024-11-07 16:05:36

您需要使用列的 renderer 方法来显示所需的文本。

renderer: function(val){
    // select the display text for val from the combobox's store
    return display text;
}

You need to use the renderer method for the column to display the desired text.

renderer: function(val){
    // select the display text for val from the combobox's store
    return display text;
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文