public jqGrid setCustomGrid(jqGrid customGrid) { this._customGrid = customGrid; this._customGrid._parentId = this._id; return this; }
public jqGrid setCustomGridJson(jqGrid customGrid) { this._customGridJson = customGrid; this._customGridJson._parentId = this._id; customGrid.parentGridRef = this; return this; }
////////////////////////////////////////////////////////////////////// /// <summary> /// Enables a subgrid. /// If the subGrid is enabled a additional column at left side is added to the basic grid. /// This column contains a 'plus' image which indicate that the user can click on it to expand the row. /// By default all rows are collapsed /// </summary> /// <param name="subGrid"></param> /// <returns></returns> public jqGrid setSubGrid(jqGrid subGrid) { this._subGrid = subGrid; return this; }