Announcement

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

    Window, grid, fetching

    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?
    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();
        }
    }
    Last edited by andll; 25 Jun 2010, 03:09.

    #2
    Is the Loading Your Data window from SC.showPrompt()?

    Comment

    Working...
    X