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

Untitled

By: a guest on Aug 7th, 2012  |  syntax: None  |  size: 0.33 KB  |  hits: 12  |  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. Remove typing cursor from combobox
  2. // example combobox config
  3. xtype: 'combo',
  4. allowBlank: false,
  5. forceSelection: true,
  6. valueField:'id',
  7. displayField:'name',
  8. store: myStore,
  9.  
  10. // add this "onFocus" config
  11. onFocus: function() {
  12.     var me = this;
  13.  
  14.     if (!me.isExpanded) {
  15.         me.expand()
  16.     }
  17.     me.getPicker().focus();
  18. },