56 lines
1.9 KiB
Plaintext
56 lines
1.9 KiB
Plaintext
<div id="divDateTimeArea">
|
|
<div class="fleft activeService" id="selectedService"></div>
|
|
<div class="fright">
|
|
<table width="100%" border="0" cellspacing="0" cellpadding="0">
|
|
<tr>
|
|
<td class="DatePickerLabel">Start Date</td>
|
|
<td>@(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))
|
|
.Max(DateTime.Now)
|
|
.HtmlAttributes(new { @class = "kendo-make-readonly", type = "text" })
|
|
)
|
|
|
|
</td>
|
|
<td class="DatePickerLabel"> End Date</td>
|
|
<td>@(Html.Kendo().DatePicker()
|
|
.Name("endtDate")
|
|
.Start(CalendarView.Month)
|
|
.Depth(CalendarView.Month)
|
|
.Format(System.Configuration.ConfigurationManager.AppSettings["dateFormat"])
|
|
.Value(DateTime.Now)
|
|
.Max(DateTime.Now)
|
|
.HtmlAttributes(new { @class = "kendo-make-readonly", type = "text" })
|
|
)
|
|
</td>
|
|
<td>
|
|
<input type="button" value="Get Report" class="button_blue" onclick="showTicketScoreReportData()" style="width: auto; margin: 0 0 0 7px; line-height: 9px; overflow: hidden; height: 26px;">
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="clear"></div>
|
|
</div>
|
|
<div id="divGridTicketScore">
|
|
</div>
|
|
|
|
|
|
<style>
|
|
#divDateTimeArea {
|
|
background: none !important;
|
|
}
|
|
|
|
</style>
|
|
|
|
<script>
|
|
var userId = '@ViewBag.userId';
|
|
var _userRole = '@ViewBag.UserRole';
|
|
|
|
$(document).ready(function () {
|
|
showTicketScoreReportData();
|
|
});
|
|
</script>
|