Hello, i have grid on the window
Grid is fetching data from large data sources, so we have Loading your data window, but it is under the grid's window, and is not visible a bit:
Can you help me force grid to show it's message in the visible position?
Grid is fetching data from large data sources, so we have Loading your data window, but it is under the grid's window, and is not visible a bit:
Can you help me force grid to show it's message in the visible position?
Code:
public class CommonC extends Window { public CommonC() { grid.setWidth100(); grid.setHeight100(); grid.setDataSource(new DictionaryDataSource()); grid.setAutoFetchData(true); addItem(grid); setShowHeader(false); setDismissOnEscape(true); setDismissOnOutsideClick(true); setIsModal(true); setSize("260 px", "300 px"); centerInPage(); grid.setShowFilterEditor(true); grid.setFields(new ListGridField("NAME1", "NAME")); grid.fetchData(); } }
Comment