Mini Kabibi Habibi

Current Path : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos/Views/TreeList/
Upload File :
Current File : C:/Users/Public/Documents/DXperience 13.1 Demos/ASP.NET/CS/MVCDemos/Views/TreeList/Export.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexContent" ContentPlaceHolderID="ContentHolder" runat="server">
    <% Html.BeginForm("Export", "TreeList"); %>
        <% TreeListExportDemoOptions options = (TreeListExportDemoOptions)Session["TreeListExportOptions"]; %>
        <div class="BottomMargin">
            <% foreach(string typeName in TreeListDemoHelper.ExportTypes.Keys) { %>
                <input type="submit" name="<%= typeName %>" value="<%= TreeListDemoHelper.ExportTypes[typeName].Title %>" />&nbsp;
            <% } %>
            <%= Html.CheckBox("EnableAutoWidth", options.EnableAutoWidth, new { style = "vertical-align: middle" })%>
            <label for="EnableAutoWidth" style="vertical-align: middle">Auto-width</label>
            <%= Html.CheckBox("ExpandAllNodes", options.ExpandAllNodes, new { style = "vertical-align: middle" })%>
            <label for="ExpandAllNodes" style="vertical-align: middle">Expand all nodes</label>
            <%= Html.CheckBox("ShowTreeButtons", options.ShowTreeButtons, new { style = "vertical-align: middle" })%>
            <label for="ShowTreeButtons" style="vertical-align: middle">Show tree buttons</label>
        </div>
        <% Html.RenderPartial("ExportPartial", Model); %>    
    <% Html.EndForm(); %>
</asp:Content>