26 lines
669 B
Plaintext
26 lines
669 B
Plaintext
@page "/"
|
|
@page "/AwaitingDisposition"
|
|
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
|
|
@namespace OI.Metrology.View
|
|
|
|
<PageTitle>Awaiting Disposition</PageTitle>
|
|
<h4>Awaiting Disposition</h4>
|
|
|
|
<div style="height: 450px;">
|
|
<table id="grid"></table>
|
|
</div>
|
|
|
|
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
|
<div class="col-xs-1">
|
|
<input type="button" class="btn" id="OpenButton" value="Open" />
|
|
</div>
|
|
<div class="col-xs-1">
|
|
<input type="button" class="btn" id="RefreshButton" value="Refresh" />
|
|
</div>
|
|
</div>
|
|
|
|
<script suppress-error="BL9992">
|
|
setInterval(function () { $("#RefreshButton").click(); }, 60000);
|
|
</script> |