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
/
VITA
/
Views
/
Miscellaneous
/
Edit File Name :
AnamolyData.cshtml
@model List<RER_Project.DataAccess.Functions.Fn_Anamolies_Detection> @{ ViewBag.Title = "Anamoly Data Tracking"; } <div class="wrapper wrapper-content animated fadeInRight"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <label><b>Anamoly Detection</b></label> </div> </div> </div> </div> </div> <div class="wrapper wrapper-content animated"> <div class="row"> <div class="col-lg-12"> <div class="ibox float-e-margins"> <div class="ibox-content"> <div class="table table-responsive table-striped table-hover table-bordered" id="table-container"> <table class="table table-striped" id="maintable"> <thead> <tr> <th>Is Baseline</th> <th>Member</th> <th>Baseline Id</th> <th>Avg</th> <th>Standard Deviation</th> <th>Income</th> <th>Total Sales Amount</th> <th>Status</th> </tr> </thead> <tbody> @foreach (var item in Model) { <tr> <td> @item.is_baseline </td> <td>@item.member</td> <td>@item.id</td> <td>@item.average</td> <td>@item.deviation</td> <td>@item.income</td> <td>@item.total_sales_amt</td> <td>@item.status</td> </tr> } </tbody> </table> <div id="bottom_anchor"></div> </div> </div> </div> </div> </div> </div> <script type="text/javascript"> function moveScroll(){ var scroll = $(window).scrollTop(); var anchor_top = $("#maintable").offset().top; var anchor_bottom = $("#bottom_anchor").offset().top; if (scroll>anchor_top && scroll<anchor_bottom) { clone_table = $("#clone"); if(clone_table.length == 0){ clone_table = $("#maintable").clone(); clone_table.attr('id', 'clone'); clone_table.css({position:'fixed', 'pointer-events': 'none', top:0}); clone_table.width($("#maintable").width()); $("#table-container").append(clone_table); $("#clone").css({visibility:'hidden'}); $("#clone thead").css({'visibility':'visible','pointer-events':'auto'}); } } else { $("#clone").remove(); } } $(window).scroll(moveScroll); </script> <style> table td, th { border: 1px solid #e7eaec; } #header-fixed { position: fixed; top: 0px; display:none; background-color:white; } thead{ background-color:white; } </style>
Save