ext4使用總結(六)樹的動態載入,分支的重新整理

2021-08-27 12:43:02 字數 821 閱讀 9176

對於ext4的樹,與ext.grid.panel是屬於同乙個父類ext.panel.table,所有有樹的有許多的基本特性可以參照table和grid來學習,當然樹也有自己的特性。如下圖:

[img]

在樹的動態載入,有如下配置:

tree的store中需要的屬性:

autoload: true,

root:

tree的model中需要的屬性:

proxy: ,

sorters:

伺服器端返回的資料格式:

//nextlevelnodes 是子節點的list

modelmap.put("children", nextlevelnodes);

modelmap.put("success", "true");

增加節點後的樹的分支重新整理:

所選節點的id

var selectednodefromstore = store.getnodebyid(selectednode.raw.id);

//store是樹的store(繼承自ext.data.treestore)

store.load(, scope: this});

感謝和我一起開發的,給我幫助的所有的朋友們,和給予我靈感的喬梁,還有程式設計師的** develop with pleasure!

Ext4使用總結(四)Ext4跨命名空間 引用

呼叫端ext的載入配置 ext.loader.setconfig 在公用的命名域內,可以做action,event,logic等的處理,如下圖 在plugin中的controller資料夾中的commoncontroller中,可以定義如下的頁面引用 refs displayitem,引用了不同命名...

ext4使用總結(四)Ext4跨命名空間 引用

呼叫端ext的載入配置 ext.loader.setconfig 在公用的命名域內,可以做action,event,logic等的處理,如下圖 img 在plugin中的controller資料夾中的commoncontroller中,可以定義如下的頁面引用 refs displayitem,引用了...

ext4使用總結(一)解除小數字運算溢位

在ext中,具有合計功能的grid,有時會出現小數字運算溢位的問題,可以在合計列上加入如下 來解除問題 summarytype sum renderer function val 校驗時也可以使用函式ext.util.format.round 下面的兩個函式,我認為在計算合計時,比較有用的 ext....