Categories | Question details Back To List | ||
setColumnHidden and printView involve 2 header Hi, I use printView and setColumnHidden to hide the first Column. In printView window the table header appears twice followed by the filterrow. I use IE. best regards Answer posted by Support on Dec 08, 2008 10:22 Unfortunately the issue can't be reconstructed locally. Please provide exact code used for grid's header initialization Answer posted by J. Künzel on Dec 08, 2008 11:09 The code: function doInitGrid(){ mygrid.setHeader(" ,F1,F2,F3,F4,F5,F6,F7,F8,F9,F10,F11"); mygrid.attachHeader(" ,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter,#text_filter, , "); mygrid.setColTypes("link,ro,ro,ro,ro,ro,link,ro,ro,ro,link,link"); } function printTab(){ mygrid.setColumnHidden(0,true); <body onload="doInitGrid()"> printTab() starts with onclick event. |