Sorry for too late reply. But I can not represent what cause this until nows.
I think this causes by I made custom header row.
You may see the original first (the first picture). The upper row (I'll call it header row) should only has only column with Text is Date, this appear by dbr.crosstab command. The other columns are W20 and Y2015. M05 are made by code below.
SET @salesmanTableName = 'sm_y2015_m05';
select 'dbr.resultclass', @smName;
/* Separate header line */
select 'dbr.javascript', concat(
'$(".',@smName,' th.cell_ct_top").last().remove();',
concat('$(".',@smName,' th.cell_ct_top").last().after("<th class=\'cell_ct_top\' colspan=\'6\'>W20</th>");'),
concat('$(".',@smName,' th.cell_ct_top").last().after("<th class=\'cell_ct_top\' colspan=\'6\'>Y2015 .M05</th>");'),
concat('$(".',@smName,' th.cell_ct_top").last().after("<th class=\'cell_ct_top\' colspan=\'6\'>Y2015 .Q02</th>");'),
concat('$(".',@smName,' th.cell_ct_top").last().after("<th class=\'cell_ct_top\' colspan=\'6\'>Y2015 .HY01</th>");')
), 'onload';
So, have you any other way to provide header column without break it up while scroll down?
Thank,