-
20 Jan 2013 1:48 AM #231
horizontal and paging example don't work right in 2.1
horizontal and paging example don't work right in 2.1
Hi Mitchell.I Just upgrade my app to 2.1.But horizontal and paging example don't work right.Please take a look at the attached pictureThanks.
-
20 Jan 2013 6:37 AM #232
Paging fix:
Code:goToPicker : { left: 0, top: 0, cls: Ext.baseCSSPrefix + 'select-overlay', modal : true, width : 200, height : 200, layout : 'fit', hideOnMaskTap : true } handleGoToButton : function(btn) { var me = this, picker = me.getGoToPicker(), pages = me.getPages(), i = 1, data = [], index, record, list = picker.down('list'); var store = list.getStore(); store.removeAll(); for (; i <= pages; i++) { data.push({ page : i }); } store.add(data); index = store.find("page", this.getGrid().getStore().currentPage, null, null, null, true); record = store.getAt((index == -1) ? 0 : index); if (!picker.getParent()) { Ext.Viewport.add(picker); } picker.showBy(btn); list.select(record, null, true); },
-
20 Jan 2013 7:38 PM #233
2.1 issues resolved note
2.1 issues resolved note
For sencha touch 2.1, I ran into two issues with the touchgridpanel in a card layout. Probably newbie mistakes as I just downloaded it ~ 10 minutes ago - but a heads up for anyone else with these issues:
1) I had to make sure my cls contained 'touchgridpanel' vs just say 'card card4' or it didn't force that class on the outermost div tag (and nothing looked right). I'd think the ux could force that cls onto the resulting html to avoid that...
2) It didn't render any data if I did Ext.create('Ext.ux.touch.grid.List', {..}) vs {xtype: 'touchgridpanel', ...}
-
26 Jan 2013 3:06 PM #234
Hey - had the same issue by myself.
This is a bug in Sencha Touch 2.1 - until 2.1.1 isn't generally available you can use the fix described under:
http://www.sencha.com/forum/showthre...l=1#post909763
Use the patch of alexfluger as the one of TommyMaintz disabled the header output.
This solution worked for me
hth
-
28 Jan 2013 7:00 AM #235
it is possible to make editable a grid cell?
-
28 Jan 2013 7:13 AM #236Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
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.
-
28 Jan 2013 7:38 AM #237
-
28 Jan 2013 7:47 AM #238Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
Those are old ST1 projects
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.
-
28 Jan 2013 7:48 AM #239
-
28 Jan 2013 7:55 AM #240Sencha - Senior Forum Manager
- Join Date
- Mar 2007
- Location
- St. Louis, MO
- Posts
- 33,582
- Vote Rating
- 433
Sure the grid does but that link you linked to is for ST1
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
