I've run into a problem with the 10/16 nightly build ( that also exists in the 09/15 build):
If I add a formula column to a ListGrid - the entire dataset is loaded in 75 record increments - which for large datasets is undesirable. I've included a straightforward test case:
The supplyItem ds is from the builtinds testcase. If you add a formula field to the grid - I used formula = "A" - and watch the RPC manager, you should see the requests .
If I add a formula column to a ListGrid - the entire dataset is loaded in 75 record increments - which for large datasets is undesirable. I've included a straightforward test case:
Code:
VLayout layout = new VLayout();
final ListGrid grid = new ListGrid();
grid.setDataSource(DataSource.get("supplyItem"));
grid.setCanAddFormulaFields(true);
grid.setHeight(300);
grid.setWidth(600);
grid.setAutoFetchData(true);
layout.setMembers(grid);
layout.draw();
Comment