/// <summary> /// This option controls what to do when an ajax operation is in progress. /// 'disable' - disables the jqGrid progress indicator. This way you can use your own indicator. /// 'enable' (default) - enables “Loading” message in the center of the grid. /// 'block' - enables the “Loading” message and blocks all actions in the grid until the ajax request /// is finished. Note that this disables paging, sorting and all actions on toolbar, if any. /// </summary> /// <param name="loadUi">Load ui mode</param> public Grid setLoadUi(LoadUi loadUi) { this._loadUi = loadUi; return this; }
/// <summary> /// This option controls what to do when an ajax operation is in progress. /// 'disable' - disables the jqGrid progress indicator. This way you can use your own indicator. /// 'enable' (default) - enables “Loading” message in the center of the grid. /// 'block' - enables the “Loading” message and blocks all actions in the grid until the ajax request /// is finished. Note that this disables paging, sorting and all actions on toolbar, if any. /// </summary> /// <param name="loadUI">Load ui mode</param> public Grid SetLoadUI(LoadUi loadUI) { this.loadUI = loadUI; return this; }
/// <summary> /// This option controls what to do when an ajax operation is in progress. /// 'disable' - disables the jqGrid progress indicator. This way you can use your own indicator. /// 'enable' (default) - enables “Loading” message in the center of the grid. /// 'block' - enables the “Loading” message and blocks all actions in the grid until the ajax request /// is finished. Be aware that this disables paging, sorting and all actions on toolbar, if any. /// </summary> /// <param name = "loadUi">Load ui mode</param> public Grid SetLoadUi(LoadUi loadUi) { _loadUi = loadUi; return this; }