Forum


20:40

05/09/2014

Hi,
I am using jqgrid and trying to group columns. But somehow its not grouping the data . Following is the code I am using.Please advise.
showJQgrid :function(sysObj)
{
console.log("inside showJQGrid");
var Jsj = sysObj.filteredData;
$('#grid').jqGrid({
datatype : 'json',
colNames:['MARKET','SECTOR/REGION','PRODUCT','DATE', 'LAST-CLOSED', 'VOLUME'],
colModel:[
{name:'MARKET',index:'MARKET', width:80},
{name:'SECTOR/REGION',index:'SECTOR/REGION', width:100},
{name:'PRODUCT',index:'PRODUCT', width:150},
{name:'DATE',index:'DATE', width:85, sorttype:"date", formatter:"date"},
{name:'LAST-CLOSED',index:'LAST-CLOSED', width:85, sorttype:"float",formatter:"number",editable:true},
{name:'VOLUME',index:'VOLUME', width:100, align:"right",sorttype:"float", formatter:"number", editable:true},
],
pager : '#pager',
rowList : [10, 20, 30 ],
viewrecords : true,
grouping:true,
groupingView : {
groupField: ['MARKET','SECTOR/REGION'],
groupColumnShow: [false,false],
groupCollapse: true,
groupOrder: ['asc']
},
});
for ( var i = 0; i < Jsj.length; i++)
{
jQuery("#grid").jqGrid('addRowData', i+1, Jsj[i]);
$("#grid").trigger('reloadGrid');
}
$("#grid").jqGrid('setGridHeight', $("#center").height());
$("#grid").navGrid("#pager", {
edit : false,
add : false,
del : false
});
$("#grid").jqGrid('inlineNav', "#pager");
}
Â
Thanks,
Shrads
14:09

Moderators
30/10/2007

Hello,
Â
In all cases this will not work.
When using addRowdata the grouping will not work.
You have 2 options
Â
1. After add a datawith addrowdata make the grouping - just see the doks and demos (dynamic grouping)
2. Use data parameter to passs the dataand set the key property - again see docs
Â
Regards
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
19:21

05/09/2014

Hi Tony,
Â
Thank you for the suggestion. For first option , I tried putting for loop before using jqgrid function , but I m getting errorÂ
 |
...!1),this.each(function(){var X=f.length;n=!0===this.p.rownumbers?1:0;h=!0===this... |
in jquery.jqGrid.min.js on line no 149 !!Â
Second option is not clear to me Â
Even i went through few examples , but could not get an idea on dynamic grouping. Can you please suggest on this?
Thanks a lot,
Shraddha
Â
EDIT: Hi Tony,
Â
Now I removed addRowData from the code and using addJSONData. With this, its grouping the data only at first level but till limited rows. Following is the code :
showJQgrid :function(sysObj)
{
var Jsj = sysObj.filteredData;
$('#grid').jqGrid({
datatype : 'json',
colNames:['MARKET','SECTOR/REGION','PRODUCT','DATE', 'LAST-CLOSED', 'VOLUME'],
colModel:[
{name:'MARKET',index:'MARKET', width:100},
{name:'SECTOR/REGION',index:'SECTOR/REGION', width:100},
{name:'PRODUCT',index:'PRODUCT', width:150},
{name:'DATE',index:'DATE', width:85, sorttype:"date", formatter:"date"},
{name:'LAST-CLOSED',index:'LAST-CLOSED', width:100, sorttype:"float",formatter:"number",editable:true},
{name:'VOLUME',index:'VOLUME', width:100, align:"right",sorttype:"float", formatter:"number", editable:true},
],
pager : '#pager',
rowNum:20,
rowList : [10, 30, 50 ],
viewrecords : true,
gridView:true,
grouping:true,
groupingView : {
groupField: ['MARKET','SECTOR/REGION'],
groupColumnShow: [true,true],
groupCollapse: true,
},
});
jQuery("#grid")[0].addJSONData(Jsj);
$("#grid").trigger('reloadGrid');
$("#grid").jqGrid('navGrid',"#pager", {edit : false,add : false,del : false});
10:00

Moderators
30/10/2007

Hello,
Â
Why do you use addJsonData? Just set the url and the grid will do the rest for you.
Not sure, but please try not to use SECTOR/REGION - if possible rename this in colModel and DATA with
SECTOR_REGION or something elese.
Â
Regards
For professional UI suites for Java Script and PHP visit us at our commercial products site - guriddo.net - by the very same guys that created jqGrid.
Most Users Ever Online: 715
Currently Online:
33 Guest(s)
Currently Browsing this Page:
1 Guest(s)
Top Posters:
OlegK: 1255
markw65: 179
kobruleht: 144
phicarre: 132
YamilBracho: 124
Renso: 118
Member Stats:
Guest Posters: 447
Members: 11373
Moderators: 2
Admins: 1
Forum Stats:
Groups: 1
Forums: 8
Topics: 10592
Posts: 31289
Newest Members:
, razia, Prankie, psky, praveen neelam, greg.valainis@pa-tech.comModerators: tony: 7721, Rumen[Trirand]: 81
Administrators: admin: 66