Mr.Combet Webshell
Your IP :
216.73.216.136
Server IP :
103.233.58.157
Server :
Windows NT WIN-4PGF72KEHKB 10.0 build 17763 (Windows Server 2016) AMD64
Server Software :
Microsoft-IIS/10.0
PHP Version :
7.3.25
Add File :
Submit
Add Directory :
Submit
Dir :
C:
/
inetpub
/
wwwroot
/
mapqa
/
Views
/
Dashboard
/
View File Name :
AWPBDashboard.cshtml
@model List<RER_Project.DataAccess.Functions.Fn_Workplan_Taget_vs_Actual> @{ ViewBag.Title = "AWPB Dashboard"; } <style> table, th, td { border: 1px solid; } .bottomHeight { padding-bottom: 50px; } .filter.col-lg-12 { height: 100px !important; } </style> <div class="wrapper wrapper-content animated fadeInRight" style="padding:0px 0px 0px"> <div class="row wrapper border-bottom white-bg page-heading"> <div class="col-md-8"> <ol class="breadcrumb"> <li class="active"> <strong>AWBP Dashboard</strong> </li> </ol> </div> </div> <br /> <div class="row"> <div class="filter col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="row"> <div class="form-group col-md-4"> <label><strong>Fiscal Year</strong></label> <select type="text" class="form-control required" name="fyId" id="fyId" data-api="/fiscal_year_unlocked/select" data-api-selected-value="@ViewBag.currentfiscalyear"></select> </div> @*<div class="form-group col-md-4"> <label><strong>Users</strong></label> <select type="text" class="form-control required select2" name="userId" id="userId" data-api="/user-level-two/select"></select> </div>*@ @*<div class="form-group col-md-4"> <label><strong>Activities</strong></label> <select type="text" class="form-control required select2" name="activityId" id="activityId" data-api="/activity/select"></select> </div>*@ <div class="form-group col-md-2" style="padding-top:4px"> <br /> <button type="button" id="filter" name="filter" class="btn btn-primary center-orientation"> <i class="fa fa-search" aria-hidden="true"></i></button> </div> </div> </div> </div> </div> </div> </div> <div class="wrapper wrapper-content animated fadeInRight"> <div id="loadPartialView"></div> </div> <br /> <script src="https://code.highcharts.com/highcharts.js"></script> <script src="https://code.highcharts.com/modules/exporting.js"></script> <script src="https://code.highcharts.com/modules/export-data.js"></script> <script src="https://code.highcharts.com/modules/accessibility.js"></script> <script type="text/javascript"> $(document).ready(function () { window.initializeSelectApis(); $('.select2').select2() loadPartialView(@ViewBag.currentfiscalyear); }) function loadPartialView(fiscalYear) { WorkForce.loader.show(); $('#loadPartialView').load("/dashboard/awpb/report/" + fiscalYear, @*+ "/" + activityid,*@ function (response, status, xhr) { if (status == "error") { var msg = "Sorry but there was an error: "; ShowMessage("error", "error", msg + xhr.status + " " + xhr.statusText); }; WorkForce.loader.hide(); }); } function getFyId() { var fiscalYear = $('#fyId').val(); return fiscalYear; } @*function getUserId() { debugger; var userid = $('#userId').val(); if (userid == '' || userid == null) { userid = 0 } return userid; }*@ @*function getActivityId() { var activityid = $('#activityId').val(); return activityid; }*@ $('#filter').off("click").on("click", function () { loadPartialView(getFyId() @*, getActivityId()*@); }) </script>