Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
1010
WhiteSpace between igDialog and content
posted

What settings should I do to eliminate the whitespace between igDialog and its content. 

I have an igGrid inside and igDialog, and i see WhiteSpace.

Thank 

Parents
  • 1010
    Offline posted

    Here is my settings on dialog window and iggrid. 

    I used the page designer to design the dialog and place the grid.

    $("#dialog1").igDialog({
    minWidth: 250,
    minHeight: 200,
    pinOnMinimized: false,
    trackFocus:false,
    closeOnEscape: false,
    enableDblclick: "false",
    showFooter: true,
    showHeader: true,
    showMaximizeButton: true,
    showPinButton: true,
    showMinimizeButton: true,
    width: 600,
    height: 400,
    headerText: ui.node.data.PageName,
    draggable: true
    });

    $("#grid1").igGrid({
    showFooter: true,
    showHeader: true,
    autoAdjustHeight: true,
    width: "100%",
    height: "100%",
    renderCheckboxes: true,
    autoGenerateColumns: false,
    columns: [
    ....
    ],
    features: [
    {
    name: "Filtering"
    },
    {
    name: "Paging",
    showPageSizeDropDown: false
    },
    {
    name: "Sorting"
    },
    {
    name: "Selection",
    inherit: true
    }
    ]
    });

Reply Children
No Data