Hello Isomorphic.
We spotted an issue while using SelectItem with grid (multiple fields with filters).
When you first open the component, scroll to the bottom of the list. Enter some value into one of filters, so that amount of items shown is reduced. The grid is shown empty and scrollbar stays at same place. Only when you move scrollbar manually to the top, grid is not empty.
This works perfectly in case data is fetched page by page. But in our case we want all the data to be present on client and do all filtering and sorting on client side.
To reproduce this, Multi-field search example from showcase can be used. The only change you have to apply there is put dataPageSize to bigger value in pickListProperties variable, like that:
ListGrid pickListProperties = new ListGrid();
pickListProperties.setShowFilterEditor(true);
pickListProperties.setDataPageSize(9000);
(just add the last line to existing code).
We currently use version 5.0 of SmartGWT so please provide fix for this version.
Thanks in advance for your help!
Best regards,
Iaroslav
We spotted an issue while using SelectItem with grid (multiple fields with filters).
When you first open the component, scroll to the bottom of the list. Enter some value into one of filters, so that amount of items shown is reduced. The grid is shown empty and scrollbar stays at same place. Only when you move scrollbar manually to the top, grid is not empty.
This works perfectly in case data is fetched page by page. But in our case we want all the data to be present on client and do all filtering and sorting on client side.
To reproduce this, Multi-field search example from showcase can be used. The only change you have to apply there is put dataPageSize to bigger value in pickListProperties variable, like that:
ListGrid pickListProperties = new ListGrid();
pickListProperties.setShowFilterEditor(true);
pickListProperties.setDataPageSize(9000);
(just add the last line to existing code).
We currently use version 5.0 of SmartGWT so please provide fix for this version.
Thanks in advance for your help!
Best regards,
Iaroslav
Comment