Announcement

Collapse
No announcement yet.
X
  • Filter
  • Time
Clear All
new posts

    formula field causes entire dataset to be loaded

    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:
    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();
    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 .

    #2
    We've made a change to address this issue. Please try the next nightly build (4.0p / 4.1d branches)

    Regards
    Isomorphic Software

    Comment

    Working...
    X