standard ExtJS MVC applicationのビューポートにLoadMaskを適用するにはどのように必要なファイルをロードしていますか? ExtJSのPanel
等ExtJS 4.1 MVC:読み込み中にビューポートにLoadMaskを適用する方法は?
main
上記のMVCビューのxtype
ある
Ext.Loader.setConfig({enabled:true});
Ext.application({
requires: [
'Ext.container.Viewport',
],
name: 'APP',
appFolder: 'app',
controllers: [
'Main'
],
launch: function() {
Ext.create('Ext.container.Viewport', {
layout: 'fit',
items: [
{
xtype: 'main'
}
]
});
}
});
、それが延びる可能性があり、標準的な処理を行います。
ようなMVCアプリケーションの一例は、app.js
ための次のコードでありますこのためのアプローチユビキタス要件はありますか?
! –