Hybrid View
-
20 Feb 2007 10:50 AM #1
Hide Grid Header
Hide Grid Header
How do I hide all grid headers? I want the column to show up but not the header.
-
20 Feb 2007 12:08 PM #2
quick and dirty css
that will of course hide all headers of all grids on that page.Code:<style type="text/css"> .x-grid-header { display:none; } </style>
-
20 Feb 2007 6:13 PM #3
-
7 May 2007 12:32 PM #4
-
18 May 2007 4:35 AM #5
Hi,
I just cannot figure out why this is not working for me.
I am using yui-ext-33
Using grid
var configureColGrid = new YAHOO.ext.grid.Grid('srarch', srarchDataModel, srarchlColumnModel);
Used style sheet
<style type="text/css">
#gridid .x-grid-header {
display:none;
}
</style>
But my grid headers are still visible
Please guide me.
Thanks.
-
18 May 2007 6:29 AM #6
Class names were different waaaaay back then!
Use Firebug to find uot which class you have to hide.
-
22 Jun 2007 1:03 PM #7
...so is there a way to hide the column headers through javascript - i.e. not with CSS?
-
20 Feb 2007 7:00 PM #8
Thanks guys. I figured I was missing config option in one of the many objects needed to create a grid.
On that note, perhaps this would be a useful config option?
-
21 Feb 2007 5:31 PM #9
Similar Threads
-
how to hide the header of grid ?
By waynez in forum Ext 1.x: Help & DiscussionReplies: 2Last Post: 2 Apr 2007, 8:19 AM -
add a tooltip to a grid header
By jeandamien in forum Ext 1.x: Help & DiscussionReplies: 1Last Post: 30 Mar 2007, 4:07 AM -
Grid header hide
By seno in forum Ext 2.x: Help & DiscussionReplies: 2Last Post: 12 Mar 2007, 11:02 PM -
Grid Header Tooltips
By tryanDLS in forum Community DiscussionReplies: 7Last Post: 28 Nov 2006, 5:11 AM -
Need this.shim.hide() in hide func of BasicDialog
By kalebwalton in forum Community DiscussionReplies: 1Last Post: 25 Nov 2006, 4:29 PM


Reply With Quote