0
我使用Ext js 3.4組合框查找程序。
假設組合框的商店使用分頁。首先,當我選擇某個項目時,它給了我ie:getValue()=> 1000和getRawValue()=>「Item Name」,但是在改變分頁方式(沒有選擇任何項目)之後,getValue()方法返回「Item Name」。更改後Combobox分頁,getValue和getRawValue返回相同的值
任何人都可以幫助我嗎?
我使用Ext js 3.4組合框查找程序。
假設組合框的商店使用分頁。首先,當我選擇某個項目時,它給了我ie:getValue()=> 1000和getRawValue()=>「Item Name」,但是在改變分頁方式(沒有選擇任何項目)之後,getValue()方法返回「Item Name」。更改後Combobox分頁,getValue和getRawValue返回相同的值
任何人都可以幫助我嗎?
Combobox = Ext.extend(Ext.form.ComboBox, {
allowBlank: false,
autoSelect: false,
baseParams: {},
cls: "remote-server-finder",
displayField: 'name',
emptyText: "",
forceSelection: false,
itemSelector: 'div.remote-server-finder-item',
minChars: 0,
pageSize: 10,
queryDelay: 10,
store: null,
triggerAction: 'all',
typeAhead: true,
valueField: 'id',
minListWidth: 235,
maxHeight: 400,
/**
* Setup the data store and template for the finder.
*/
initComponent: function() {
this.blankText = helpsys.locale.javascript.field_required;
this.loadingText = helpsys.locale.common.searching;
this.listEmptyText = helpsys.locale.javascript.no_matching_record;
this.store = new Ext.data.JsonStore({
baseParams: this.baseParams,
fields: [
{
name: 'id'
},
{
name: 'name'
},
{
name: 'description'
},
{
name: 'type'
}
],
idProperty: 'id',
proxy: new Ext.data.HttpProxy({
url: this.url,
method: 'GET',
listeners:{
beforeload:{
scope:this,
fn:function(dp, params){
if(dp.activeRequest['read']){
dp.activeRequest['read'].conn.abort();
}
}
}
}
}),
root: 'items',
totalProperty: "totalResultsAvailable"
});
this.tpl = new Ext.XTemplate('<tpl for="."><div class="remote-server-finder-item finder-item x-combo-list-item">',
'<div class="remote_server_finder_text finder_text">', '<h2 class="name">{name}</h2>', '<p class="description">{description}</p>', '</div>', '</div></tpl>');
);
}