Guest User

Untitled

a guest
Aug 7th, 2012
25
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  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. },
Advertisement
Add Comment
Please, Sign In to add comment