58 lines
831 B
Plaintext
58 lines
831 B
Plaintext
@{
|
|
ViewData["Title"] = "Run Headers";
|
|
}
|
|
|
|
<style>
|
|
html,
|
|
body {
|
|
height: 100%;
|
|
}
|
|
|
|
div.container-fluid {
|
|
height: 90%;
|
|
}
|
|
|
|
#HeaderGrid,
|
|
#FieldsGrid {
|
|
font-size: 12px;
|
|
}
|
|
|
|
.FieldTitle {
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
|
|
<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%">
|
|
<tr>
|
|
<td width="50%">
|
|
<table id="HeaderGrid"></table>
|
|
</td>
|
|
<td width="50%">
|
|
<table id="FieldsGrid"></table>
|
|
</td>
|
|
</tr>
|
|
</table>
|
|
|
|
<script>
|
|
|
|
$(document).ready(function () {
|
|
|
|
initRunHeaders("@ViewBag.ApiUrl");
|
|
|
|
});
|
|
|
|
</script>
|