FineUI/FineUI.Examples/dropdownlist/dropdownlist_simulate_tree.aspx

32 lines
1.2 KiB
Plaintext
Raw Normal View History

2013-11-01 14:13:51 +08:00
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="dropdownlist_simulate_tree.aspx.cs"
Inherits="FineUI.Examples.data.dropdownlist_simulate_tree" %>
<!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:SimpleForm ID="SimpleForm1" BodyPadding="5px" runat="server" LabelWidth="150px" Width="650px" EnableFrame="true" EnableCollapse="true"
ShowBorder="True" Title="简单表单" ShowHeader="True">
<Items>
<x:DropDownList Label="模拟树的下拉列表" AutoPostBack="false" Required="true" EnableSimulateTree="true"
ShowRedStar="true" runat="server" ID="ddlBox">
</x:DropDownList>
<x:Button ID="Button1" Text="获取选中项" runat="server" OnClick="Button1_Click">
</x:Button>
<x:Label runat="server" ID="labResult">
</x:Label>
</Items>
</x:SimpleForm>
<br />
<br />
</form>
</body>
</html>