Currently I have the following jqgrid structure:
colName:['ID','Name'],
colModel:[ {<ID CODE HERE>},{<NAME CODE HERE>}],
<REST OF CODE HERE>
The above jqgrid displays fine as follows:
ID Name
1 Name1
2 Name2
I want to display one row above it with dynamic data. Such as:
Period
From 10/10/2013 To 10/10/2014
ID Name
1 Name1
2 Name2
The "Period" row is static word while the row below it "From 10/10/2013 To 10/10/2014" is dynamic data coming from backend just like Name1, and Name2 etc.
How can I display these two rows above it?