在 SmartGWT 中设置 ListGrid 选择
我正在尝试在 SmartGWT 中设置 ListGrid 表对象的选定记录,但我找不到任何方法来执行此操作。我知道有一个 getSelectedRecords() 函数,但没有匹配的 setSelectedRecords() 函数。我尝试查看 set/getSelectedState() 是否有效,但 GWT 抱怨需要主键和 DataSource 对象。有什么方法可以设置 ListGrid 的选择吗?
I'm trying to set the selected records of a ListGrid table object in SmartGWT, but I can't find any way of doing it. I know there's a getSelectedRecords() function, but no matching setSelectedRecords(). I tried to see if set/getSelectedState() would work, but GWT complains about needing a primary key and a DataSource object. Is there any way to set the selection of a ListGrid?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为此,您可以使用
selectRecords()
方法,如下所示:For this you can use one of the
selectRecords()
methods, like so: