Check documentation for the latest version of dhtmlxSuite setNoHeader DHTMLX Docs

setNoHeader

creates a grid without header

void setNoHeader(boolean fl);
flbooleantrue - for not using header in the grid

Example

mygrid.setNoHeader(true);

Details

call the method before initialization, but after the setHeader() call. The setHeader() method should be called any way, as it defines the number of columns.

Back to top