Hi,
I have a multipple grid page that I would like to hide the 2nd,3rd, 4th grid, but when i comment the following code for the 2,3,4
//mygrid.setHeader"X,Y,z…
the report stop workin, ho can I hide this headers
You still need setHeader command, it defines count of column in grid.
If you need to have grid without visible column - just use grid.setNoHeader
grid.setHeader(“A,B,C”); //mandatory
grid.setNoHeader(true); //hide header for the grid
Hi,
Is there a xml parameter for the same behavior ? For me, the header is describe in xml file.
Thanks
There is no separate parameter, but you can execute the same comman through beforeInit section
true
<column …> … header configuration here
Thanks, I didn’t think that