|
Lines 11-17
Link Here
|
| 11 |
//<![CDATA[ |
11 |
//<![CDATA[ |
| 12 |
|
12 |
|
| 13 |
// Prepare array of all column headers, incrementing each index by |
13 |
// Prepare array of all column headers, incrementing each index by |
| 14 |
// two to accomodate control and title columns |
14 |
// two to accommodate control and title columns |
| 15 |
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]); |
15 |
var allColumns = new Array([% FOREACH item_header_loo IN item_header_loop %]'[% loop.count %]'[% UNLESS ( loop.last ) %],[% END %][% END %]); |
| 16 |
for( x=0; x<allColumns.length; x++ ){ |
16 |
for( x=0; x<allColumns.length; x++ ){ |
| 17 |
allColumns[x] = Number(allColumns[x]) + 2; |
17 |
allColumns[x] = Number(allColumns[x]) + 2; |
| 18 |
- |
|
|