我想指定挂毯网格的默认排序列。
我知道我可以在服务器端对我的 getter 中的记录进行排序,但这似乎是不必要的努力,因为网格完全能够自行排序。
所以我的网格定义看起来像:
<t:grid source="queues" inPlace="true"> </t:grid>
getQueues 返回对象的集合,例如:
public class Queue {
public String getName();
public float getOccupancy();
}
默认情况下,我想让网格按“占用”属性按降序排序。
从我看到的 Tapestry 文档中,该 Grid 具有属性sortModel,这似乎是正确的选择。但是,我无法很好地解释将其设置为的正确值。