41 lines
969 B
Plaintext
41 lines
969 B
Plaintext
@page "/RunHeaders"
|
|
|
|
@using Microsoft.AspNetCore.Components.Web
|
|
@using MudBlazor
|
|
|
|
@namespace OI.Metrology.ClientHub.Pages
|
|
|
|
<PageTitle>Run Headers</PageTitle>
|
|
|
|
<h4>Run Headers</h4>
|
|
|
|
<table>
|
|
<tr>
|
|
<td>
|
|
<label for="ToolType">Tool Type:</label>
|
|
</td>
|
|
<td>
|
|
<div id="ToolType"></div>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<table width="100%" height="80%" style="min-height:480px;">
|
|
<tr>
|
|
<td width="50%">
|
|
<table id="HeaderGrid"></table>
|
|
</td>
|
|
<td width="50%">
|
|
<table id="FieldsGrid"></table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<div class="row" style="margin-top: 10px; margin-bottom: 20px;">
|
|
<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> |