@{ ViewBag.Title = System.Configuration.ConfigurationManager.AppSettings["Title"] + " | Consolidated Report"; Layout = "~/Views/Shared/_Layout.cshtml"; }
@* *@
Filters
Start Date @(Html.Kendo().DatePicker() .Name("startDate") .Start(CalendarView.Month) .Depth(CalendarView.Month) .Format(System.Configuration.ConfigurationManager.AppSettings["dateFormat"]) .Value(new DateTime(DateTime.Now.Year, DateTime.Now.Month, 1)) .Min(new DateTime(2025, 9, 1)) .Max(DateTime.Now) .HtmlAttributes(new { @class = "kendo-make-readonly", type = "text" }) .Events(e => { // e.Change("onChangeDateSelection"); }) )
End Date @(Html.Kendo().DatePicker() .Name("endtDate") .Start(CalendarView.Month) .Depth(CalendarView.Month) .Format(System.Configuration.ConfigurationManager.AppSettings["dateFormat"]) .Value(DateTime.Now) .Min(new DateTime(2025, 9, 1)) .Max(DateTime.Now) //.Enable(false) .HtmlAttributes(new { @class = "kendo-make-readonly", type = "text" }) )
Organization @(Html.Kendo().ComboBox() .SelectedIndex(0) //.Events( //e => e.Change("onSelectState") // ) .Name("OrganizationName") .Filter("contains") .DataTextField("Text") .DataValueField("Value") .BindTo(Model).Suggest(true) )
Vehicle Type
Product Type
Consolidated Report
  • Consolidated Report
  • Graphical View

Please select filters and press Get Report button to view report

Please select filters and press Get Report button to view report

@**@ @*@Scripts.Render("~/closeticket/jsTicketCloseReport")*@