Reputation: 1
Code:
sportsSave: function (basicForm, action, choices) {
var sportsArguments = choices.sportsArguments;
var sportsPage = sportsArguments.sportsPage;
Upvotes: 0
Views: 1510
Reputation: 604
I had faced the similar problem. Conceling the page layout helped me improve the performance drastically
{
Ext.suspendLayouts();
// batch of updates
Ext.resumeLayouts(true);
}
also refer performance tunning
Hope this helps
Upvotes: 1