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
65
disable a webgrid on certain action.
posted

I have a ultrawegrid. A loading image is shown during the process when a particular row is being deleted.

While the row is being deleted, I want the rest of the rows to be disabled.

I am new with infragistics. help is highly appreciated.

  • 14049
    Offline posted

    Please try following JS code to disable the grid:

    igtbl_setDisabled(igtbl_getGridById("UltraWebGrid1").MainGrid, true);

    Second parameter needs to be false to enable the grid.