首頁 > web前端 > js教程 > 主體

輕鬆學習jQuery外掛EasyUI EasyUI建立樹形網路(1)_jquery

WBOY
發布: 2016-05-16 15:28:43
原創
1586 人瀏覽過

一、EasyUI建立基礎樹形網格
樹形網格(TreeGrid)元件從資料網格(DataGrid)繼承,但是允許在行之間存在父/子節點關係。許多屬性繼承至資料網格(DataGrid),可以用在樹狀網格(TreeGrid)中。為了使用樹狀網格(TreeGrid),使用者必須定義 'treeField' 屬性,指明哪個欄位作為樹節點。
本文將向您展示如何使用樹狀網格(TreeGrid)元件設定一個資料夾瀏覽。

建立樹狀網格(TreeGrid)

<table id="test" title="Folder Browser" class="easyui-treegrid" style="width:400px;height:300px"
 url="data/treegrid_data.json"
 rownumbers="true"
 idField="id" treeField="name">
 <thead>
 <tr>
 <th field="name" width="160">Name</th>
 <th field="size" width="60" align="right">Size</th>
 <th field="date" width="100">Modified Date</th>
 </tr>
 </thead>
</table>
登入後複製

二、EasyUI建立複雜樹形網格
樹形網格(TreeGrid)可以展示有限空間上有多列和複雜資料電子表格。本教學將示範如何將表格資料​​排列在分割的網格和多行表頭中,以便組織共同的資料。

建立樹狀網格(TreeGrid)

<table title="Complex TreeGrid" class="easyui-treegrid" style="width:550px;height:250px"
 url="data/treegrid2_data.json"
 rownumbers="true" showFooter="true"
 idField="id" treeField="region">
 <thead frozen="true">
 <tr>
 <th field="region" width="150">Region</th>
 </tr>
 </thead>
 <thead>
 <tr>
 <th colspan="4">2009</th>
 <th colspan="4">2010</th>
 </tr>
 <tr>
 <th field="f1" width="50" align="right">1st qrt.</th>
 <th field="f2" width="50" align="right">2st qrt.</th>
 <th field="f3" width="50" align="right">3st qrt.</th>
 <th field="f4" width="50" align="right">4st qrt.</th>
 <th field="f5" width="50" align="right">1st qrt.</th>
 <th field="f6" width="50" align="right">2st qrt.</th>
 <th field="f7" width="50" align="right">3st qrt.</th>
 <th field="f8" width="50" align="right">4st qrt.</th>
 </tr>
 </thead>
</table>
登入後複製

如您所看到的,樹狀網格(Treegrid)的使用和資料網格(Datagrid)一樣。請使用 'frozen' 屬性來定義凍結列,列的 'colspan' 和 'rowspan' 屬性來定義多行表頭。

以上就是分別為大家分享的EasyUI創建簡單樹形網絡和複雜樹形網絡的方法,希望對大家的學習有所幫助。

想學習更多內容請看這篇文章:  《輕鬆學習jQuery外掛EasyUI EasyUI實作樹形網路基本操作(2)》

相關標籤:
來源:php.cn
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!