Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have this JQGrid in my .gsp page that would require the feature of grouping in JQGrid. I've strictly followed the code presented here under, Grouping > Multiple Group all level sum (new), but since I'm using Grails 2.0.3 together with this plugins jquery 1.7.1 and jqgrid 3.8.0.1, I tried it using this code:

<jq:resources />
<jqui:resources />
<jqgrid:resources />
<script type="text/javascript">
<jqgrid:grid 
  id="clientGrid" 
  url="'${createLink(action: 'listClientTableJSON')}'"
  colNames="'ID', 'Client', 'Date of Record', 'Details'"
  colModel="{name:'id'}, {name:'client'}, {name:'recordDate'}, {name:'details'}"
  viewrecords="true" 
  datatype="'json'"
  grouping="true"
  groupingView="groupField:{'client', 'recordDate'}, groupColumnShow:{true, true}, groupOrder:{'asc', 'asc'}"> 
</jqgrid:grid> 
</script>

There is no problem grouping a single column i.e. grouping by Client. But when it comes to grouping two or more, the grid only groups the first groupField indicated in the groupingView attribute. The question is how can I display the grid having two or more columns using the <jquery:grid> tag?

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.