国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

jQuery EasyUI Chinesisches Referenzhandbuch / jEasyUI創(chuàng)建基礎樹形網(wǎng)格

jEasyUI創(chuàng)建基礎樹形網(wǎng)格

樹形網(wǎng)格(TreeGrid)組件從數(shù)據(jù)網(wǎng)格(DataGrid)繼承,但是允許在行之間存在父/子節(jié)點關系。許多屬性繼承至數(shù)據(jù)網(wǎng)格(DataGrid),可以用在樹形網(wǎng)格(TreeGrid)中。為了使用樹形網(wǎng)格(TreeGrid),用戶必須定義 'treeField' 屬性,指明哪個字段作為樹節(jié)點。

本教程將向您展示如何使用樹形網(wǎng)格(TreeGrid)組件設置一個文件夾瀏覽。

111.png

創(chuàng)建樹形網(wǎng)格(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>

下載 jQuery EasyUI 實例

jeasyui-tree-treegrid1.zip