获取 SmartGWT 中 ListGrid 中可见列的数量?
我试图获取可见列的数量 (ListGridField) 在 ListGrid< /a>.
有一个简单的解决方案吗?
I'm trying to get the number of visible columns (ListGridField) in a ListGrid.
Is there an easy solution for that?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是使用
ListGrid.fieldIsVisible(String fieldName)
方法:Here's the solution using
ListGrid.fieldIsVisible(String fieldName)
method:您可以循环遍历 ListGrid 中的列并调用 ListGridField.getHidden() 来计算哪些列可见或不可见。
you can loop through the columns in the ListGrid and call ListGridField.getHidden() to count which ones are visible or not.