Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jul 15th, 2012  |  syntax: None  |  size: 0.41 KB  |  hits: 107  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. ExtJS Dynamic panel very slow loading
  2. me.suspendLayout = true;
  3. me.setLoading(true);
  4. me.removeAll(true);
  5. me.setVisible(true);
  6. if(vocabs !== undefined){
  7.  vocabs.vocab.forEach(function (vocab,i){
  8.     // create a panel which is 1 line, each row has a listener on it
  9.     me.add(Ext.create('Coda.finance.browse.transactions.view.PromptLine',
  10.             {vocab:vocab}));
  11.    });
  12. }
  13. me.doLayout();
  14. me.setLoading(false);