#9187 closed enhancement (wontfix)
Could not hide grid headers
Reported by: | coldwind | Owned by: | Bryan Forbes |
---|---|---|---|
Priority: | high | Milestone: | tbd |
Component: | DojoX Grid | Version: | 1.3.0 |
Keywords: | dojox.grid.DataGrid, headers | Cc: | |
Blocked By: | Blocking: |
Description
According to documentation I can hide headers by using css, but it's not true (at least in 1.3.0).
So I suggest to add property showHeaders (defaults true) and use it for making decision.
We can check it in buildRendering and _resize methods of dojox.grid._Grid class and hide headers if this needed.
Change History (3)
comment:1 Changed 12 years ago by
comment:2 Changed 10 years ago by
Resolution: | → wontfix |
---|---|
Status: | new → closed |
Just add this css to hide the headers:
#myGridId .dojoxGridMasterHeader { display: none; }
comment:3 Changed 10 years ago by
Using dojo 1.3.2 this worked for me:
#grid .dojoxGridHeader { display: none; }
Note: See
TracTickets for help on using
tickets.
(In [9441]) Fix package for TooltipDialog? (it's not in layout). Refs #9187.