ZK Listheader 以编程方式设置排序
ZK Listheader set sort programmatically
我有一个这样的列表header
<listheader id='lh3' label="Quantity" sort="auto(lower(value))"/>
有时我需要删除排序,我已经使用了这个方法。
final Listheader header = .....
header.setSort(null);
但它仍然具有排序属性,我无法获得排序,因为 header 没有 getSort() 方法,这有点奇怪!! !
我做错了吗?我该怎么做才能以编程方式删除排序属性..
非常感谢委内瑞拉的问候
sort
属性可以是字段、表达式或 "none"。
所以试试这个:
final Listheader header = .....
header.setSort("none");
我有一个这样的列表header
<listheader id='lh3' label="Quantity" sort="auto(lower(value))"/>
有时我需要删除排序,我已经使用了这个方法。
final Listheader header = .....
header.setSort(null);
但它仍然具有排序属性,我无法获得排序,因为 header 没有 getSort() 方法,这有点奇怪!! !
我做错了吗?我该怎么做才能以编程方式删除排序属性..
非常感谢委内瑞拉的问候
sort
属性可以是字段、表达式或 "none"。
所以试试这个:
final Listheader header = .....
header.setSort("none");