1

I'm using Ext JS and Sencha CMD and want to experiment with a few themes.

Also I have read that the theme for an app can be changed in app.js(using theme property) and sencha.cfg(using app.theme property) and then run sencha app build.

I would like to know, Why are this configurations in two different files? And Which is the correct way of doing this?

4

2 に答える 2

0

ExtJS 5 では、アプリケーションのテーマを指定する正しい方法は、ドキュメント でapp.json説明されているように、ファイルを使用することです。

このsencha.cfg方法も機能しますが、古いバージョンの ExtJS からの移行をサポートするために存在します。

于 2014-07-21T10:59:13.903 に答える
0

どちらもテーマを定義する正しい方法です。ただし、テーマは app.json で定義した方がよいでしょう。いずれにせよ、sencha.cfg でテーマのデフォルトが定義されます -

app.theme=ext-theme-classic

app.json で次のように定義するもの

"theme": "my-theme"

sencha.cfg で定義されているものを上書きします

明確にするためにドキュメントを参照してください - http://docs.sencha.com/cmd/5.x/microloader.html

于 2015-03-06T11:23:09.477 に答える