This is an old revision of the document!
Table of Contents
Subgrid
There are times when we need to be able to easily display (or edit) records that are the children of a selected record in the parent grid. We would, of course, want to show only those records that are the children of the selected record in the grid, never the children of all records.
jqGrid offers two ways of handling child records:
- a subGrid
- a grid as a subGrid
Installation
In order to use this module you should mark the Subgrid when you download the grid. For more information refer to Download.
For Developers - this is the grid.subgrid.js in the src directory.
Properties
SubGrids use the following properties, events and methods of the parent grid - i.e. you should set these properties in the grid options
Property | Type | Description | Default |
---|---|---|---|
subGrid | boolean | If set to true this enables using 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. | false |
subGridModel | array | This property, which describes the model of the subgrid, has an effect only if the subGrid property is set to true. It is an array in which we describe the column model for the subgrid data. The syntax is : subGridModel : [ { name : ['name_1','name_2',…,'name_n'], width : [width_1,width_2,…,width_n] , align : ['left','center',…,'right'] , params : [param_1,…,param_n], mapping:['name_1_map','name_2_map',…,'name_n_map']} Where name: an array containing the labels of the columns of the subgrid. width: an array containing the width of the columns. This array should have the same length as in name array. align: an array containing the alignment of the columns. The values can be left, center or right. If omited the aliment is left. params: an array in which we can add a name from main grid's colModel to pass as additional parameter to the subGridUrl. mapping: the parameter is used only when repeatitems in subgrid is set to false. When defined in this case we use the names from this array to map it to the subgrid names. If not set and repeatitems is false we use the name option. | |
subgridtype | mixed | This option allow loading subgrid as a service. If not set, the datatype parameter of the parent grid is used. See the example below | null |
subGridWidth | integer | Determines the width of the subGrid column if subgrid is enabled. | 20 |
subGridUrl | string | This option has effect only if subGrid option is set to true. This option points to the file from which we get the data for the subgrid. jqGrid adds the id of the row to this url as parameter. If there is a need to pass additional parameters, use the params option in subGridModel | empty string |
ajaxSubgridOptions | object | This option allow to set global ajax settings for the subgrid when we request data. Note that with this option is possible to overwrite all current ajax setting in the subgrid request including the complete event. | empty object |
In order to configure the subgrid you will need to configure the subgrid item in xmlReader or jsonReader. The default setting for these are:
xmlReader : { ... subgrid: { root: "rows", row: "row", repeatitems: true, cell: "cell" } }
and a jsonReader
jsonReader : { ... subgrid: { root: "rows", repeatitems: true, cell: "cell" } }
The mapping rules are the same as those in the basic grid. For more information refer to Retrieving Data.
In order to use correct subGridType as service below is a simple code which shows how this can be achieved:
jQuery("#grid_id").jqGrid({ ... subgridtype: function(rowidprm) { jQuery.ajax({ url:'url_to_the_service', data:rowidprm, dataType:"json", complete: function(jsondata,stat){ if(stat=="success") { var thegrid = jQuery("#grid_id")[0]; thegrid.subGridJson(eval("("+jsondata.responseText+")"),rowidprm.id); } } }); }, ... });
Where rowidprm is array that contains the id of the row plus other parameters as required to set subGridModel parameters and subGridJson is a method which is described below.
Events
In these events,
- pID is the unique id of the div element where we can put contents when subgrid is enabled,
- id is the id of the row
- sPostData - the data which is posted when a subgrid request is made
Event | Parameters | Description |
---|---|---|
subGridBeforeExpand | pID, id | The event is raised just before expanding the grid. When set, this event should return true or false. If it returns false the subgrid row is not expanded and the subgrid is not opened. |
subGridRowExpanded | pID, id | This event is raised when the subgrid is enabled and is executed when the user clicks on the plus icon of the grid. Can be used to put custom data in the subgrid. |
subGridRowColapsed | pID, id | This event is raised when the user clicks on the minus icon. The event should return true or false; when the returned value is false the row can not be collapsed. |
serializeSubGridData | sPostData | If set this event can serialize the data passed to the ajax request. The function should return the serialized data. This event can be used when a custom data should be passed to the server - e.g - JSON string, XML string and etc. |
Methods
Method | Parameters | Returns | Description |
---|---|---|---|
expandSubgridRow | rowid | jqGrid object | dynamically expand the subgrid row with the id = rowid |
collapseSubGridRow | rowid | jqGrid object | dynamically collapse the subgrid row with the id = rowid |
toggleSubGridRow | rowid | jqGrid object | dynamically toggle the subgrid row with the id = rowid |
subGridJson | json, rowid | false | Add data in a subgrid row. json is a json object, rowid is the id of the row after which the data will be added |
subGridXml | xml, rowid | false | Add data in a subgrid row. xml is a xml dom element, rowid is the id of the row after which the data will be added |
Discussion
I have my subgrid data in the same XML as the main grid:
Is there any way to deal with this data structure? I think it will be faster than sending one request for every detail.
I have the same problem…
Did you find a solution?
Can subgrid be used to display custom html markup, rather than data?