FineUI/FineUI.Examples/tree/select/tree_multi_select.aspx
2013-11-01 14:13:51 +08:00

53 lines
2.2 KiB
Plaintext
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="tree_multi_select.aspx.cs"
Inherits="FineUI.Examples.tree.select.tree_multi_select" %>
<!DOCTYPE html>
<html>
<head runat="server">
<title></title>
<link href="../../css/main.css" rel="stylesheet" type="text/css" />
</head>
<body>
<form id="form1" runat="server">
<x:PageManager ID="PageManager1" runat="server" />
<x:Tree ID="Tree1" Width="650px" EnableFrame="true" EnableCollapse="true" ShowHeader="true" EnableMultiSelect="true" Title="树控件"
runat="server">
<Nodes>
<x:TreeNode Text="中国" Expanded="true">
<x:TreeNode Text="河南省" Expanded="true">
<x:TreeNode Text="驻马店市" Expanded="true" NodeID="Zhumadian">
<x:TreeNode Text="遂平县" NodeID="Suiping">
</x:TreeNode>
<x:TreeNode Text="西平县" NodeID="Xiping">
</x:TreeNode>
</x:TreeNode>
<x:TreeNode Text="漯河市" Enabled="true" NodeID="Luohe" />
</x:TreeNode>
<x:TreeNode Text="安徽省" Expanded="true" NodeID="Anhui">
<x:TreeNode Text="合肥市" NodeID="Hefei">
</x:TreeNode>
<x:TreeNode Text="黄山市" NodeID="Huangshan">
</x:TreeNode>
</x:TreeNode>
</x:TreeNode>
</Nodes>
</x:Tree>
<br />
<br />
这是一个可以多选的树你可以按着“Ctrl”选择多项。
<br />
<br />
<x:Button ID="btnGetSelectedValues" OnClick="btnGetSelectedValues_Click" CssClass="inline"
runat="server" Text="获取选中的节点列表">
</x:Button>
<x:Button ID="btnSelectOthers" OnClick="btnSelectOthers_Click" runat="server" Text="继续选中“合肥市”和“黄山市”">
</x:Button>
<br />
<x:Label ID="labResult" runat="server">
</x:Label>
<br />
<br />
</form>
</body>
</html>