-
11 Mar 2010 9:34 AM #11
-
12 Mar 2010 3:00 AM #12
You might try the new SliderField from the 3.2 beta.
Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
12 Mar 2010 3:42 AM #13
-
24 Mar 2010 9:14 AM #14
It would be nice to have such a thing as an extension of DisplayField.
Anyone?
Thanks in advance
-
24 Mar 2010 10:57 AM #15
I don't know what you mean. What has a DisplayField got to do with a column renderer?
Search the forum: http://www.google.com/coop/cse?cx=01...%3Az7of1ufqccu
Read the docs too: http://extjs.com/deploy/dev/docs/
Scope: http://extjs.com/forum/showthread.ph...642#post257642
-
24 Mar 2010 11:03 AM #16
Thank you
Thank you
Thank you animal for this useful extension. This really spiced up a page my sales team uses to track their sales progress. Now at a glance they can see where they are at which saves time and money. I appreciate your contributions!
-
24 Mar 2010 11:42 AM #17
-
25 Mar 2010 12:15 AM #18
-
25 Mar 2010 12:22 AM #19
-
30 Mar 2010 7:16 PM #20
hi first of all great plugin and thank you for posting it.
I tried registering the component like this
then tried to use it like:Code:Ext.reg('pcolumn',Ext.ux.ProgressColumn);
But it doesn't work, the grid isn't being displayedCode:var grid = new Ext.grid.GridPanel({ store: store, columns: [ {id:'company',header: 'Company', width: 160, sortable: true, dataIndex: 'company'}, {header: 'Price', width: 75, sortable: true, renderer: 'usMoney', dataIndex: 'price'}, {header: 'Change', width: 75, sortable: true, renderer: change, dataIndex: 'change'}, {xtype:'pcolumn',header: '% Change',width: 105,dataIndex: 'change',divisor: 'price',align: 'center'}, {header: 'Last Updated', width: 85, sortable: true, renderer: Ext.util.Format.dateRenderer('m/d/Y'), dataIndex: 'lastChange'} ], stripeRows: true, autoExpandColumn: 'company', height: 350, width: 600, title: 'Array Grid', // config options for stateful behavior stateful: true, stateId: 'grid' });
Update: searching the forums i sawCode:b is not a constructor [IMG]chrome://firebug/content/blank.gif[/IMG]var swfobject=function(){var E="undefi...);Ext.grid.GroupingView.GROUP_ID=1000;ext-all.js
that did itCode:Ext.apply(Ext.grid.Column.types, { pcolumn: Ext.ux.ProgressColumn });


Reply With Quote