Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有DataGrid一个AbsolutePanel.
DataGrid
AbsolutePanel
我通过设置它的大小myDataGrid.setSize("100px", "231px");
myDataGrid.setSize("100px", "231px");
它应该显示 140 个数据项,但它只显示 60 个或类似的东西,并显示自动垂直滚动条。
但是为什么它只显示部分数据,而不是完整的数据呢?
我假设您对DataGrid. 默认情况下,页面大小为50,因此它只会显示 50 条记录。
要么你使用另一个 cosntructor ( DataGrid(int pageSize)) 要么你添加一个Pager(ie SimplePager)
DataGrid(int pageSize)
Pager
SimplePager