DaltonPimmel / flexigrid

Automatically exported from code.google.com/p/flexigrid
0 stars 0 forks source link

Hide not working in Column definition #28

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. View the demo on the flexigrid website. ISO3 should be hidden yet it shows. 

What is the expected output? What do you see instead?
I assume that the column should be hidden upon the rendering of the table.

What version of the product are you using? On what operating system?
v1.1, Windows XP, ASP.Net 4.0, Jquery 1.4.1

Please provide any additional information below.

Original issue reported on code.google.com by christop...@gmail.com on 27 Apr 2011 at 12:17

GoogleCodeExporter commented 8 years ago

Original comment by eric.caron on 28 Apr 2011 at 12:40

GoogleCodeExporter commented 8 years ago
Change has been pushed to trunk.
I changed line 703 from:
if (cm.hidden) {
to:
if ($(cm).attr('hide')) {

If you can verify that this change fixes the problem, then I'll push a new 
release (1.1.1)

Original comment by eric.caron on 28 Apr 2011 at 3:12

GoogleCodeExporter commented 8 years ago
I think we should note that "hide" was changed to "hidden". 

Original comment by ymkin....@gmail.com on 28 Apr 2011 at 6:51

GoogleCodeExporter commented 8 years ago
That change was not intentional nor was it necessary. It should still be "hide".

Original comment by eric.caron on 28 Apr 2011 at 12:40

GoogleCodeExporter commented 8 years ago
The changes have fixed the issue. Columns now hide

Original comment by christop...@gmail.com on 28 Apr 2011 at 4:41

GoogleCodeExporter commented 8 years ago

Original comment by eric.caron on 28 Apr 2011 at 8:43