Is it Possible to remove header from DOJO Grid

1.2k Views Asked by At

Is it Possible to remove header from DOJO Grid?

2

There are 2 best solutions below

0
On BEST ANSWER

In your css, do this:

.dojoxGridMasterHeader { display: none; }

Hope this helps.

0
On

it is better to specify in which grid you want to remove header, for example by using id of your parent div:

#myDiv .dojoxGridHeader {
    display: none;
}