ExtJs owner.componentLayoutCounter问题解
时间:2014-06-01 11:25:06
收藏:0
阅读:287
owner.componentLayoutCounter问题解:
listeners :
{
render : function(grid) {//
要在渲染完之后再load才有loading信息
grid.setLoading(false,false);
}
}
注意在表格渲染后就设置LoadMask这个组件隐藏,不然再下次加载时由于上次的还在显示就会报此错!
评论(0)