Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有什么方法可以向远程加载的组合框添加一个空值?
{ xtype: 'combobox', emptyText: 'Proveedor...', store: 'MyStore', displayField: 'title', valueField: 'mymodel_id', queryMode: 'remote', typeAhead: true }
监听load组合框的存储事件,并在处理程序中插入一条空记录:
load
Ext.getStore('MyStore').on('load', function(store) { store.insert(0, Ext.create('MyModel', { mymodel_id: -1, // some invalid id title: 'Choose from the list...' // default text for the empty record }); });