Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- Remove typing cursor from combobox
- // example combobox config
- xtype: 'combo',
- allowBlank: false,
- forceSelection: true,
- valueField:'id',
- displayField:'name',
- store: myStore,
- // add this "onFocus" config
- onFocus: function() {
- var me = this;
- if (!me.isExpanded) {
- me.expand()
- }
- me.getPicker().focus();
- },
Advertisement
Add Comment
Please, Sign In to add comment