如何在 smartgwt 中将 SelectItem 中的几个选项项灰显?
我试图禁用 smartgwt 中 SelectItem 中的几个选项项,但一直无法找到合适的 API。请帮忙。
I am trying to disable few option items in SelectItem in smartgwt but have not been able to find a suitable API. Please help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
使用 optionDataSource 提供 SelectItem 的值。然后,您可以使用 ListGrid.recordEnabledProperty 将 ListGridRecords 设置为禁用,或者如果它们只是变灰但未禁用,请使用 SelectItem.setPickListFields() 安装格式和样式覆盖。
Use an optionDataSource to provide the values for the SelectItem. You can then set the ListGridRecords disabled using the ListGrid.recordEnabledProperty, or if you them just greyed out but not disabled, use SelectItem.setPickListFields() to install formatting and styling overrides.
你能告诉我,你为什么要这样做吗?如果您希望某些选项不被选择,则不要将它们包含在 selectItem 中。
Can you tell me, why do you want to do so? If you want some options not to be selected, then don't include them in selectItem.
你可以下拉一个网格,然后禁用它。
You could drop down a grid, and disable in that.