示例#1
0
 /// <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;
 }
示例#2
0
 /// <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;
 }
示例#3
0
文件: Grid.cs 项目: reharik/MvcJqGrid
 /// <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;
 }