ExtJs 4.x 학습 소기: Ext.grid.Panel loading 표시 금지...
1624 단어 ExtJs
첫째, 패널을 만든 후 패널의view의loadMask 속성을 설정합니다
fileGridPanel.view.loadMask = false;
var fileGridPanel = Ext.create('Ext.grid.Panel',{
id:'filegrid',
layout:'fit',
store:store,
autoExpandColumn:true,
columns:[
{text:' ',dataIndex:'filecode',width:80},
{text:' ',dataIndex:'filename',flex:1},
{text:' ',dataIndex:'fileext',hidden:true},
{text:' ',xtype:'actioncolumn',width:80,
items:[{
iconCls:'delicon',
tooltip:' ',
handler: deleteGridRecord
},
{
iconCls:'saveicon',
tooltip:' ',
handler: downloadFileInGrid
},
{
iconCls:'editicon',
tooltip:' ',
handler: function(grid, rowIndex, colIndex){
var rec = grid.getStore().getAt(rowIndex);
setFileInfo(OPERATION_EDIT,rec);
}
}]
}],
dockedItems:[{
xtype:'toolbar',
dock:'top',
items:[searchbar]
},{
xtype:'toolbar',
dock:'top',
items:[funcbar]}],
bbar:Ext.create('Ext.PagingToolbar',{
store:store,
displayInfo:true,
displayMsg:' {0}-{1} , {2} ',
emptyMsg:' '
})
});
fileGridPanel.view.loadMask = false;
둘째, viewConfig 사용
var fileGridPanel = Ext.create('Ext.grid.Panel',{
id:'filegrid',
layout:'fit',
store:store,
autoExpandColumn:true,
viewConfig:{
loadMask:false
},
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
문자열 길이를 계산하고 중국어로 두 개를 계산합니다.텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.