Is it Possible to remove header from DOJO Grid

1.1k views Asked by At

Is it Possible to remove header from DOJO Grid?

2

There are 2 answers

0
inanutshellus On BEST ANSWER

In your css, do this:

.dojoxGridMasterHeader { display: none; }

Hope this helps.

0
WhiteDragon 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;
}