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/DataBinding.aspx

<%@ Page Title="" Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexContent" ContentPlaceHolderID="ContentHolder" runat="server">
    <script type="text/javascript">
    // <![CDATA[
         $(document).ready(function() {
             $("#showServiceColumns").change(
                function() {
                    $("form").submit();
                }
            );
         });
    // ]]>
    </script>
    <% Html.BeginForm(); %>
        <div class="BottomPadding">
            <%= Html.CheckBox("showServiceColumns", (bool)Session["ShowServiceColumns"], new { 
                    style = "vertical-align: middle" 
                })
            %>
            <label class="checkBox" for="showServiceColumns" style="vertical-align: middle">Show service columns</label>
        </div>
        <% Html.RenderPartial("DataBindingPartial", Model); %>
    <% Html.EndForm(); %>
</asp:Content>