0
我使用的是ext js。我在組合框中選擇一個值,並使用此值作爲參數來獲取其他值(兩個值)。現在我想將它添加到變量中,以便在除組合框之外的其他位置使用它。我怎樣才能做到這一點?如何提取Ext.data.Model數組中包含的值?
var txtEP = new Ext.form.ComboBox({
renderTo: "txtEP",
fieldLabel: 'End Point',
triggerAction: "all",
forceSelection: true,
mode:'local',
autoScroll: true,
allowBlank: false,
autoShow: true,
typeAhead:true,
store: genres,
valueField:'pincode',
displayField:'pincode',
emptyText:'Select a Start Point',
selectOnFocus:true,
listeners : {
'select' : function(){
var selVal = this.getValue();
store.load({
url:'./genres1.php',
params: {pincode: selVal},
callback: function(records) {
endpt = records; // here is where it is assigned
}
});
}
}
});
現在我的「endpt」現在包含Ext.data.Model的數組對象,因此它是提取您需要從他們值的方法。請幫我
它看起來像你這樣它了。這段代碼有什麼問題? – Krzysztof 2012-02-21 13:28:41