PDA

View Full Version : Grid Examples


Zyclops
08-30-2007, 11:52 PM
I'm looking at implementing the following things working with the grid component:

multiline headers
fixed footer
Header or footer in the middle of data (i.e. in finance to split income and expenditure)
having setting persist for each user


If anyone's managed to implement this already (i've checked the forums), i'd love to see your code.

I'll post my solutions as i find them :)

jsakalos
09-02-2007, 07:38 AM
Some of the features you mention are already implemented in Ext 2.0

Zyclops
09-02-2007, 06:02 PM
Nice, i'll check it out.

Zyclops
09-02-2007, 06:52 PM
Some of the features you mention are already implemented in Ext 2.0
Do you know which ones?

i've searched for the changelog and the 2.0 source and couldn't find one. Also do you think that extjs 2.0 will be out in the next 2 or 3 months?

The two i'm most interested in are multiline headers and fixed footer.

I've tried delving into the code to find out where the fixed column gets written and haven't been able to find it. If anyone know's the line in 1.1 ext-debug.js?

jsakalos
09-02-2007, 08:49 PM
I've meant mainly group summaries. Search for Ext 2.0 grid examples or GridView3.

mike1993
12-17-2007, 12:56 PM
regarding multiline header...

// allows grid header to wrap
.x-grid3-hd-row td div {
white-space: normal !important;
}


unless there is a better way...