EOS/Views/Report/Report_TicketPending.cshtml
Nidhi Bhargava f0c1ab20e1 code push
2025-09-04 16:25:07 +05:30

66 lines
1.7 KiB
Plaintext

@{
ViewBag.Title = System.Configuration.ConfigurationManager.AppSettings["Title"] + " | Pending Ticket";
Layout = "~/Views/Shared/_Layout.cshtml";
}
<div class="sizefull">
<div class="window">
<div class="titlebar">
<div class="title">
Report - Pending Tickets
</div>
<div class="right">
<div class="excelIcon fright" title="Download As Excel" onclick="exportReport();" style="display: block;"></div>
@*<div class="excelIcon" title="Download As Excel"></div>
<div class="pdfIcon" title="Download As PDF" onclick="exportTaxTrending();"></div>*@
</div>
</div>
<div class="innerWindow">
<div id="divGrid">
</div>
</div>
</div>
</div>
<script>
var userId = '@ViewBag.Userid';
var _userRole = '@ViewBag.UserRole';
var token = '@ViewBag.SecurityToken';
</script>
@*@Scripts.Render("~/closeticket/jsTicketOpenReport")*@
<script src="~/Scripts/Report/reportTicketPending.js"></script>
<style>
.TicketReportDetails_Window {
width: 90% !important;
height: 85%;
/*top: 3% !important;
left: 5% !important;*/
}
.k-grid-resolutionSla img {
position: relative;
left: 34%;
}
a.k-button.k-button-icontext.k-grid-TicketDetails {
background-color: #1b3f94 !important;
color: #fff !important;
position: relative;
left: 29%;
}
a.k-button.k-button-icontext.k-grid-TicketDetails:hover {
opacity: 0.85;
}
.OpenTicket_Tbl table tbody {
text-align: center;
}
.k-link:link {
text-align: center !important;
}
</style>