Mini Kabibi Habibi

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

<%@ Page Language="C#" MasterPageFile="~/Views/Shared/Site.Master" Inherits="System.Web.Mvc.ViewPage" %>
<asp:Content ID="indexContent" ContentPlaceHolderID="ContentHolder" runat="server">
    <script type="text/javascript">
        $(document).ready(function () {
            $("#GroupType").change(function (){
                $("form").submit();
            });
        });
    </script>
    <% Html.BeginForm(); %>
        <div style="padding-bottom:10px;">
            <label for="GroupType">Group type:</label>
            <%: Html.DropDownList("GroupType", typeof(SchedulerGroupType), Session["GroupType"]) %>
        </div>
        <%
            Html.RenderPartial("GroupingPartial");
        %>
    <% Html.EndForm(); %>
</asp:Content>