Opened 12 years ago
Closed 11 years ago
#11740 closed defect (fixed)
dojox.grid hidden column doesn't work in Chrome and Safari
Reported by: | niofox | Owned by: | Bryan Forbes |
---|---|---|---|
Priority: | high | Milestone: | 1.6 |
Component: | DojoX Grid | Version: | 1.5 |
Keywords: | grid, hidden | Cc: | |
Blocked By: | Blocking: |
Description
The hidden columns in grid does not work in Chrome and Safari latest versions.
The bug is solved by changing in the file _Grid.js the following code lines from:
if(d.hasAttr(th, "hidden")){ cell.hidden = d.attr(th, "hidden") == "true"; }
To:
if(d.hasAttr(th, "hidden")){ cell.hidden = (d.attr(th,"hidden")=="true" || d.attr(th,"hidden")==true); }
Change History (2)
comment:1 Changed 12 years ago by
Owner: | changed from bryanforbes to Bryan Forbes |
---|
comment:2 Changed 11 years ago by
Milestone: | tbd → 1.6 |
---|---|
Resolution: | → fixed |
Status: | new → closed |
Note: See
TracTickets for help on using
tickets.
Already fixed with [23616]