1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
|
<div class="dialog-frame" style="min-width: 800px;">
<div class="dialog-border">
<div class="dialog-header" bind="dialogHeader"></div>
<div class="dialog-body" bind="dialogBody">
<div class="grid-layout layout-normal layout-full"><table role="presentation">
<tr>
<td colspan="2" bind="or_proj_extractSave">
</td>
</tr>
<tr>
<td width="50%" style="vertical-align: top"><div class="history-extract-dialog-panel"><table role="presentation" class="history-extract-dialog-entries" bind="entryTable"></table></div></td>
<td width="50%" rowspan="2" style="vertical-align: top">
<div class="input-container"><textarea aria-label="" spellcheck="false" wrap="off" class="history-operation-json" bind="textarea"></textarea></div>
</td>
</tr>
<tr>
<td>
<button class="button" bind="selectAllButton"></button>
<button class="button" bind="deselectAllButton"></button>
<button class="button" bind="saveJsonAsFileButton" style="float: right"></button>
</td>
</tr>
</table></div>
</div>
<div class="dialog-footer" bind="dialogFooter">
<button class="button" bind="closeButton"></button>
</div>
</div>
</div>
|