-
16 Mar 2010 2:05 PM #11
column header group
column header group
Hi,
can we use column header group and column looking together..
Regards,
Asad
-
16 Mar 2010 6:57 PM #12Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,461
- Vote Rating
- 56
Not without some changes to the column header grouping code, which will take some effort. Feel free to take a stab at it

-
15 Apr 2010 1:04 AM #13
Very useful extension!
Found a small bug, need to add the text in red below:
Code:getLockedRows : function(){ if(!this.enableGrouping){ return Ext.ux.grid.LockingGroupingGridView.superclass.getLockedRows.call(this); } var r = []; var g, gs = this.getLockedGroups(); for(var i = 0, len = gs.length; i < len; i++){ g = gs[i].childNodes[1].childNodes; for(var j = 0, jlen = g.length; j < jlen; j++){ r[r.length] = g[j]; } } return r; }
-
8 May 2010 3:28 AM #14
great extension! Thanks!
However, when the grid is loaded dynamically (using method described by Condor here: http://www.extjs.com/forum/showthrea...701#post371701), locked and unlocked column rows arent displayed properly (they are not synced vertically).
The fix is below:
PHP Code:.x-grid-group-locked-title {
margin-top: 5px;
}
-
13 Jun 2010 6:03 AM #15
Hi Mankz,
I'm new to ExtJS and very impressed with the capabilities. Especially with the extension you showed in this thread.
I have a question on the summary shown in the example, can we move it parallel / in line with the grouping header instead of appearing in the last line of the group ?
To clearly express my intention, I attached the screenshot with the position of summary that I need. And also I attach the files.

Thanks in advance,
FerisLast edited by feristhia; 13 Jun 2010 at 6:10 AM. Reason: Forgot attachment
-
13 Jun 2010 10:42 AM #16Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,461
- Vote Rating
- 56
@feristhia Definitely doable, but a little more work is needed.
-
6 Jul 2010 5:52 AM #17
I have question on maintaining the scroll position. I have more columns and rows, and the store will be loaded dynamically. At that time, the scroll position will be maintained?
-
6 Jul 2010 8:59 AM #18Sencha - Community Support Team
- Join Date
- Nov 2007
- Location
- Helsingborg, Sweden
- Posts
- 2,461
- Vote Rating
- 56
No it will not, for guidance on how to achieve that, see this post: http://www.sencha.com/learn/Ext_FAQ_..._Store_reloads
-
6 Jul 2010 9:36 AM #19
-
16 Jul 2010 5:45 AM #20
Automatic right scrolling....
Automatic right scrolling....
Hi,
I am using your extension and I find it very very useful for my extents...
However I' ve only one issue: when I click on the locked area an automatic right scroll of unlocked part of the grid is performed.
I tried to add the uptdate shown in the following thread http://www.sencha.com/forum/showthre...olling-columns but it doesn't solve my issue....
Am I doing something wrong?
Currently I am using ExtJS 3.2.1.
Many thanks in advance


Reply With Quote