Is it Possible to remove header from DOJO Grid?
In your css, do this:
.dojoxGridMasterHeader { display: none; }
Hope this helps.
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; }
In your css, do this:
Hope this helps.