I am very newbee in Knockout.js and 960.gs.
I am getiing a JSON data like following:
[1, a1],[2,a2],...[12, a12] [13, b13],[14,b14]......[24,b24]
I have taken a div with grid-12 structure
when I bind that grid with knockout.js, it displays as follows:
a1 a2 a3 a4 a5 a6
a7 a8 a9 a10 a11 a12
b13 b14 b15 b16 b17 b18
b19 b20 b21 b22 b23 b24
I want an output as follows, where first columns will be filled up with a values and just aftyer that b values will start filling up the rest grid:
a1 a5 a9 b13
a2 a6 a10 b14
a3 a7 a11 ...
a4 a8 a12 ...
How is it possible to do? Pls help, Thanks in advance.