-
10 Jan 2012 7:55 PM #221
TODO (in no order):
- Cell selection
- Custom column renderers
- Paging with animation
- DND
- Add features lost in version 2.0b1
-
20 Jan 2012 12:44 PM #222
Grid GPL license does not match Sencha Touch license
Grid GPL license does not match Sencha Touch license
Hi Mitchell,
Would it be possible to change the Grid and PagingToolBar components license to match Sencha Touch license?
We can not use GPL licensed components in our commercial product.
Valery
-
23 Jan 2012 8:00 AM #223
Two Grid components in GitHub
Two Grid components in GitHub
There are two Grid components in GitHub:
Ext.ux.touch.grid and Ext.ux.TouchGridPanel. Which one should I use - any recommendations?
-
23 Jan 2012 8:12 AM #224Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
23 Jan 2012 9:04 AM #225
The Ext.ux.touch.grid component in GitHub does not have license file. What is the license for it?
-
23 Jan 2012 9:15 AM #226Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
25 Jan 2012 10:55 AM #227
Ext.ux.touch.grid.View problems
Ext.ux.touch.grid.View problems
If I use Ext.define to extend Ext.ux.touch.grid.View, then I have two problems:
1. Sortable headers don't work;
2. listeners are ignored.
Code:Ext.define('app.view.MyGridView', { extend : 'Ext.ux.touch.grid.View', alias : 'widget.mygrid', config : { store : 'myStore', features : [ { ftype : 'app.view.Ext.ux.touch.grid.feature.HeaderMenu', launchFn : 'initialize' }, { ftype : 'app.view.Ext.ux.touch.grid.feature.Sorter', launchFn : 'initialize' } ], columns : [ { header : 'FirstColumn', dataIndex : 'firstColumn', style : 'padding-left: 1em;', width : '25%', filter : { type : 'string' } } ],listeners : { itemtap : function(view, index, item, event) { alert("itemtap listener works"); } }} });
-
25 Jan 2012 11:00 AM #228Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
you shouldn't use listeners like that. Also, PR4 I hear broke the grid... when I get around to it I will fix that. I am head deep in Ext JS 4.1.0 performance fixing for next release.
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.
-
25 Jan 2012 11:37 AM #229
-
25 Jan 2012 11:41 AM #230Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,599
- Vote Rating
- 434
If your listeners are required for a class you need to use the on method in initialize
Mitchell Simoens @SenchaMitch
Sencha Inc, Senior Forum Manager
________________
http://www.JSONPLint.com - Source to lint your JSONP!
Check out my GitHub, lots of nice things for Ext JS 4 and Sencha Touch 2
https://github.com/mitchellsimoens
Think my support is good? Get more personalized support via a support subscription. https://www.sencha.com/store/
Need more help with your app? Hire Sencha Services services@sencha.com
Want to learn Sencha Touch 2? Check out Sencha Touch in Action that is almost in print!
When posting code, please use BBCode's CODE tags.


Reply With Quote