26 lines
757 B
Plaintext
26 lines
757 B
Plaintext
@page "/AwaitingDisposition"
|
|
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using MudBlazor
|
|
|
|
@namespace OI.Metrology.ClientHub.Pages
|
|
|
|
<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; min-height:480px;">
|
|
<div class="col-xs-1">
|
|
<MudButton Variant="Variant.Filled" Color="Color.Info" id="OpenButton">Open</MudButton>
|
|
</div>
|
|
<div class="col-xs-1">
|
|
<MudButton Variant="Variant.Filled" Color="Color.Primary" id="RefreshButton">Refresh</MudButton>
|
|
</div>
|
|
</div>
|
|
|
|
<script suppress-error="BL9992">
|
|
setInterval(function () { $("#RefreshButton").click(); }, 60000);
|
|
</script> |