Created
November 15, 2011 09:08
-
-
Save seraphy/1366516 to your computer and use it in GitHub Desktop.
ExtJS4のお決まりの導入部
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ローダのメカニズムを有効化 | |
Ext.Loader.setConfig({ | |
enabled: true | |
}); | |
// Ext.uxで始まる名前のスクリプト(お手製スクリプト)は | |
// uxフォルダ以下を検索するように指示する. | |
Ext.Loader.setPath('Ext.ux', 'ux'); | |
// このページで使用するコンポーネント | |
Ext.require([ | |
'Ext.selection.*', | |
'Ext.grid.*', | |
'Ext.data.*', | |
'Ext.util.*', | |
'Ext.state.*', | |
'Ext.form.*', | |
'Ext.Viewport', | |
'Ext.ux.CheckColumn', | |
'Ext.ux.form.field.Date11' | |
]); | |
// ページがレディ状態になったときに実行される | |
Ext.onReady(function () { | |
// s.gif設定 | |
// (スペーサとして使用される1ドット画像。画像は各自で用意する.) | |
Ext.BLANK_IMAGE_URL = 'extjs/resources/themes/images/default/s.gif'; | |
// クイックチップス初期化 | |
Ext.QuickTips.init(); | |
// クッキーにステートを保存する. | |
// 各コンポーネントのconfigで、 | |
// stateful: true, | |
// stateId: 'ユニークなID', | |
// とすることで、そこに保存させる. | |
Ext.state.Manager.setProvider(Ext.create('Ext.state.CookieProvider')); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment