如何更改此代码以获取值的 ID 扩展组合框中的值?
我正在使用 GeoExt 1.1 和 Extjs 3.4.0。这是我的代码:
var submitButton = new Ext.Button({
text: 'Afficher sur la carte',
handler: function () {
var datasetId = Ext.getCmp('villeCombo').getValue();
if (datasetId != '') {
Ext.getCmp('tableauAttrib').store.removeAll();
Ext.getCmp('tableauAttrib').store.proxy.protocol.params.id_promo = datasetId;
Ext.getCmp('tableauAttrib').store.load();
}
else {
Ext.MessageBox.alert("Erreur !", " alerte");
}
}
});