Search Type: Posts; User: joseaio
Search: Search took 0.01 seconds.
-
1 Oct 2010 8:08 AM
- Replies
- 19
- Views
- 4,748
Cool!
Can you post a complete example?
· group header with summary
· groups with only one child would show all the child values and not be able to expand
Please... -
28 Sep 2010 6:20 AM
- Replies
- 19
- Views
- 4,748
You are right, I have one list/table that use your idea... (Thanks)
On entry list of account bank, some entries must be grouped (showing totals/sumary of their entries) and looks as "normal... -
28 Sep 2010 1:03 AM
- Replies
- 19
- Views
- 4,748
Yes, this way allows large summary (without overlaps header & summary) or summary on first columns.
I like that summary/totals go to end columns: You can avoid overlap if shows empty "Client... -
24 Sep 2010 5:24 AM
- Replies
- 19
- Views
- 4,748
Can you add some images to show your improvement?
-
15 Sep 2010 1:57 AM
- Replies
- 19
- Views
- 4,748
You can install Firebug (on your Firefox browser) and see de HTML/CSS Styles of ExtJS components (to understand CSS selectors you can see W3Schools)
-
14 Sep 2010 9:36 AM
- Replies
- 19
- Views
- 4,748
Only for 3.2 version... (I don't work with 2.X version)
Try with:
.x-grid-group-collapsed .x-grid-group-hd div{
position: absolute; !important
float: left; !important
... -
23 Aug 2010 1:24 AM
Jump to post Thread: Show GroupSummary within group by joseaio
- Replies
- 4
- Views
- 836
You can use a CSS hack (similar to link proposed) to show summary when expanded ...or hide when collapsed:
.x-grid-group-collapsed .x-grid3-summary-row {
display: none;
} -
21 Aug 2010 11:12 AM
Jump to post Thread: Show GroupSummary within group by joseaio
- Replies
- 4
- Views
- 836
Please, see: http://www.sencha.com/forum/showthread.php?107706-Collapse-quot-Group-Header-quot-and-quot-Summary-quot-in-single-row
-
20 Aug 2010 8:41 AM
- Replies
- 19
- Views
- 4,748
I think this (mini) hack is very interesting :)
.x-grid-group-collapsed .x-grid-group-hd .x-grid-group-title {
position: absolute;
float: left;
... -
19 Aug 2010 12:16 AM
- Replies
- 0
- Views
- 472
This new representation show the summary row with one Expander icon (see Expander Rows in: http://dev.sencha.com/deploy/dev/examples/grid/grid-plugins.html).
This expander shows all grouped rows... -
17 Aug 2010 7:22 AM
- Replies
- 9
- Views
- 1,010
Removing sortType custom function of #7 with only groupRenderer of #9 all works fine!!
Can you tell me if It's right? -
17 Aug 2010 6:53 AM
- Replies
- 9
- Views
- 1,010
Using a groupRenderer as proposed
{
xtype: 'datecolumn',
header: 'Issued',
dataIndex: 'issue',
format: 'd/m/Y',
width: 80,
... -
17 Aug 2010 6:07 AM
- Replies
- 9
- Views
- 1,010
I change to use sortType on "issue" field to return calculated "quarter" and group by it. But something was wrong (see attached image: group for every "issue" (date) instead of use "quarter"...
-
17 Aug 2010 5:38 AM
- Replies
- 9
- Views
- 1,010
Please see image, I order by "Issued" date (day+month+year) on every "quarter" group (month)
If I use a sortType (on "Issued" date) that returns quarter:
· "1" for Jan, Feb, and Mar months
·... -
17 Aug 2010 4:57 AM
- Replies
- 9
- Views
- 1,010
I like to group by an calculated column ("quarter") innexistent on JSON model (but calculated with other/existent fields: "date").
Example: a "date" field exist on my JS object but I grouped by... -
17 Aug 2010 1:31 AM
- Replies
- 9
- Views
- 1,010
It's uggly but works fine...
note: see custom title for grouping function (instead column label)
view: new Ext.grid.GroupingView({
forceFit:true,
groupTextTpl:... -
16 Aug 2010 7:20 AM
- Replies
- 0
- Views
- 378
Please see:
http://edspencer.net/2009/10/making-roweditor-use-your-column-renderers.html?utm_source=feedburner&utm_medium=feed&utm_campaign=Feed%3A+EdSpencer+%28Ed+Spencer%29 -
16 Aug 2010 6:30 AM
- Replies
- 9
- Views
- 1,010
As a renderer can customize the representation of one cell
Example: this function show quarter for some date field column
renderer: function(value){
var quarter =...
Results 1 to 18 of 18
