ext4 tree單擊事件
Ext.define('ctreemodel', {
extend: 'Ext.data.Model',
fields: [
{name: 'aa', type: 'string'},
{name: 'text', type: 'string'}
....
]
});
Ext.create('Ext.tree.Panel',{
title: 'Tree test',
contentEl:'tree-div',
autoScroll:true,
minWidth: 135,
maxWidth: 200,
store : Ext.create('Ext.data.TreeStore', {
model: 'ctreemodel',
root : {
text: 'Tree Node',
expanded : true,
children : [ {
text : "detention",
aa:'bb',
leaf : true
}, {
text : "homework",
expanded : true,
children : [ {
text : "book report",
leaf : true
}, {
text : "alegrbra",
leaf : true
} ]
}, {
text : "buy lottery tickets",
leaf : true
} ]
}
}),
listeners : {
'itemclick' : function(view,re){
alert(re.data.aa);
}
}
});
相關文章
- 同一個元素的單擊事件與雙擊事件事件
- 雙擊事件(dblclick)時,不觸發單擊事件(click)事件
- 雙擊和單擊事件衝突解決方法事件
- 安卓觸控事件與單擊事件的區別安卓事件
- android處理單擊雙擊和滑動事件Android事件
- jQuery滑鼠雙擊事件簡單介紹jQuery事件
- onDblClick雙擊事件事件
- 微信小程式單擊事件與長按事件衝突的解決辦法微信小程式事件
- c# datagridview選中當前單元格及單元格單擊事件C#View事件
- Android雙擊以及多擊事件Android事件
- 事件 滑鼠事件 表單事件 from表單事件
- 簡單瞭解EXT4檔案系統
- android開發中單擊事件的多種實現方法Android事件
- 模擬迴圈單擊事件實現layout中間panel全屏事件
- Android 按鈕單擊事件的四種常用寫法總結Android事件
- jQuery 事件(二) 表單事件jQuery事件
- Hundred Finance 攻擊事件分析NaN事件
- ALV中滑鼠雙擊事件事件
- 簡單事件事件
- linux ext4Linux
- 再現在野0day攻擊--BITTER APT攻擊事件APT事件
- 滑鼠單擊變雙擊怎麼辦 滑鼠單擊變成雙擊的解決辦法
- 從SolarWinds攻擊事件中看安全事件
- JAVA選單事件………………Java事件
- SolarWinds供應鏈攻擊事件分析事件
- 區塊鏈安全————DAO攻擊事件解析區塊鏈事件
- QHeaderView的點選和雙擊事件HeaderView事件
- 【漏洞分析】Penpie 攻擊事件:重入攻擊構造獎勵金額事件
- 表單事件與鍵盤事件學習事件
- MFC vc++ 中CTreeContrl如何自定義實現滑鼠單擊或雙擊響應事件 ,即重寫類似於控制元件的響應事件或訊息C++事件控制元件
- Gawker攻擊事件暴露密碼保護缺陷事件密碼
- 【漏洞分析】ReflectionToken BEVO代幣攻擊事件分析事件
- 關於 DDoS 攻擊事件的探討(轉)事件
- 【LeetCode從零單排】No100 Same Tree && No101 Symmetric TreeLeetCode
- win10滑鼠單擊變雙擊如何解決_win10系統滑鼠單擊變雙擊的解決方法Win10
- JavaScript表單驗證事件JavaScript事件
- ext4 時延stap指令碼指令碼
- 【Codeforces1404B】Tree tag | 樹上追擊、博弈、樹的直徑