1.配置實用extjs
"extjs/resources/css/ext-all.css
" rel="
stylesheet
" />
注:bootstrap.js的作用是用於 自動載入ext-all-debug.js或者ext-all.js 如果實用localhost或者ip的話,將啟動ext-all-debug,否則啟動ext-all.js2,動態載入extjs類庫
//helloworld開啟自動載入
ext.loader.setconfig();
ext.loader.setpath(
"要載入的路徑檔案");
ext.required([
'ext.grid.*',
//需要載入的類庫
]) ext.onready(function () );
注:ext.onready方法是在dom載入後才執行的,而onload則是在所有資源載入完才執行。如果存在多個 onready可以保證同時執行
ext.define("demobin"
,binary:function(v) )
ext.define(
"calculate
", ,
convert:function(v,t)
}}
);var cal = new
calculate();
alert(cal.convert(
16,2
)) ;
alert(cal.convert(
16,16
)) ;
alert(cal.convert(
16,8));
Extjs學習筆記 (二)
1.配置實用extjs extjs resources css ext all.css rel stylesheet 注 bootstrap.js的作用是用於 自動載入ext all debug.js或者ext all.js 如果實用localhost或者ip的話,將啟動ext all debug,...
extjs學習筆記
1。元件的建構函式中一般都可以包含乙個物件,這個物件包含建立元件所需要的配置屬性及值,元件根據建構函式中的引數屬性值來初始化元件。var obj var panel new ext.panel obj panel.render hello 2。關於render render 方法後面的引數表示頁面上...
extjs 學習筆記
以前大搞過extjs,後來不用了,就忘了。最近又弄。哎,複習複習。搞extjs一定會遇到定製datagrid型別的view控制項的東東,這種東東一般都是被ext.data.store驅動的,那麼store就值得好好研究下了。擴充套件點 1.獲取資料 store.proxy or store.load...