extjsgrid에서columns에 사용되는store가 초기화되지 않은 해결 방법
6311 단어 extjsgridstore 사전 로드
extjs를 사용하여grid를 개발할 때, 만약에 어떤 열의 편집기가store라면,store가 불러오는 것을 완성하지 못했을 때list 데이터를 불러옵니다.
이 열이 표시되지 않는 문제는 다음과 같습니다.
{
header: ' ', dataIndex: 'stationId', flex: 1,
renderer: function (value) {
var store = stationStore;
var record = store.queryBy(function (rec) {
if (rec.data.code == value) {
return true;
}
}, this);
if (record.getCount() == 1) {
return record.get(0).data.name;
}
},
editor: {
columnWidth: 1,
xtype: 'combobox',
typeAhead: true,
editable: true,
queryMode: 'local',
valueField: "code",
displayField: 'name',
forceSelection: true,
store: stationStore
}
},
, ,
list store autoLoad:false
store list.getStore().reload().
var coalTypeStore = Ext.create('Ext.data.Store', {
autoLoad: true,
fields: [{name: "name", type: "string"},
{name: "code", type: "string"}],
proxy: {
// async: false,
type: 'ajax',
url: ',
reader: {
type: 'json',
root: 'records'
}
},
listeners: {
'load': function () {
if (stationStore.getCount() > 0) {
// store
Ext.getCmp('xx').getStore().load();
}
}
}
});
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
extjsgrid에서columns에 사용되는store가 초기화되지 않은 해결 방법자세히 보기 extjs를 사용하여grid를 개발할 때, 만약에 어떤 열의 편집기가store라면,store가 불러오는 것을 완성하지 못했을 때list 데이터를 불러옵니다. 이 열이 표시되지 않는 문제는 다음과 같습니다...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.