在挂毯网格中抑制每页行数(分页)

Supressing rowsPerPage (pagination) in Grid of Tapestry

Tapestry 5 中有没有办法抑制 gird 的分页 组件?

我在网上找遍了,没找到解决办法。我需要显示包含完整列表的网格 不管它的长度。我的观察:

只需将 rowsperpage 设置为一个非常大的数字

您可以从 javadoc 中看到默认值为 symbol:tapestry.components.grid_rows_per_page,因此如果您想在全局范围内执行此操作,您可以覆盖此符号。另一种选择是:

TML

<t:grid source="..." rowsPerPage="prop:rowsPerPage" />

Java

public int getRowsPerPage() {
   return Integer.MAX_VALUE;
}