-
5 Jul 2009 11:54 AM #61
Hiding column headers
Hiding column headers
I am using the explorerView and was just wondering if anyone has tried to hide and show the headers depending on what view it is in. For example, I am trying to hide the column headers when in the icon views but show the headers when in the details view. Anyone have any suggestions?
-
9 Jul 2009 12:16 AM #62
Using ExplorerView 3.0 Version Compatible With Ext 2.2
Using ExplorerView 3.0 Version Compatible With Ext 2.2
go here to download the 3.0 Version
http://extjs.com/forum/showthread.php?p=346841
change the code below taged.

hope this code help some one like me (using Ext 2.2)Code:updateAllColumnWidths : function(){ ... // compatible with Ext 2.2 //this.innerHd.firstChild.style.width = this.getOffsetWidth(); this.innerHd.firstChild.style.width = (this.cm.getTotalWidth() + this.scrollOffset) + 'px'; ... }, updateColumnWidth : function(col, width){ ... // compatible with Ext 2.2 //this.innerHd.firstChild.style.width = this.getOffsetWidth(); this.innerHd.firstChild.style.width = (this.cm.getTotalWidth() + this.scrollOffset) + 'px'; ... }, updateColumnHidden : function(col, hidden){ ... // compatible with Ext 2.2 //this.innerHd.firstChild.style.width = this.getOffsetWidth(); this.innerHd.firstChild.style.width = (this.cm.getTotalWidth() + this.scrollOffset) + 'px'; ... }

-
10 Jul 2009 2:05 AM #63Ext JS Premium Member
- Join Date
- Feb 2008
- Location
- SRC solution, Toulouse, FR
- Posts
- 17
- Vote Rating
- 0
-
2 Jun 2010 12:43 PM #64
Hi...!
I just wanted to ask if possible to have this kind of panel included as part of the extjs itself? I mean I am using it extensively and I am afraid that with each version update this extension breaks here and there...!
Thanks
Mihai


Reply With Quote