Re: [Interest] ListModels with sections, not grouping by section

2015-03-26 Thread Keith Gardner
On Thu, Mar 26, 2015 at 11:30 AM Jason H wrote: > So I'm trying to use sections, and it seems that the data must be > explicit ordered by section otherwise you get the section repeated > whenever it changes that is to say: > [ > { 'a':'A' 'b':'1'} > { 'a':'B' 'b':'2'} > { 'a':'C' 'b':'1'}

[Interest] ListModels with sections, not grouping by section

2015-03-26 Thread Jason H
So I'm trying to use sections, and it seems that the data must be explicit ordered by section otherwise you get the section repeated whenever it changes that is to say: [ { 'a':'A' 'b':'1'} { 'a':'B' 'b':'2'} { 'a':'C' 'b':'1'} ] section by 'b', we get three groups: 1 + A 2 + B 1 + C Wh