Unanswered: How to increase the performance of Sencha touch 2 app on tablet and ipad
Unanswered: How to increase the performance of Sencha touch 2 app on tablet and ipad
Hi, I have a requirement for tablet(Android) and ipad. For this am coding using sencha touch 2 wherein am not getting good performance after deploying on device using phonegap build.
For instance-
1. If i tap on select field it takes some 5 seconds to display popup.
2. Also am creating side panel includes list, on tap of each list item am setting a separate view. Here also its taking 5 seconds to set that view in detail panel(On samsung galaxy tablet its worst case while painting the screen).
Is there any way to increase the performance on tablet?? Please help me out in solving this performance issues.
We found that popups work best if you don't use flex on the panels that contain the controls are launching the popup. Especially for showBy popups (which is what the select field is).
I.E.
{
xtype:'container',
flex:1,
items:[
{
xtype:'selectfield',
....
}
...]