RandomSec/main/webapp/modules/core/scripts/views/data-table/cell-recon-search-for-match.html

27 lines
1.2 KiB
HTML
Raw Normal View History

<div class="dialog-frame" style="width: 450px;">
<div class="dialog-border">
<div class="dialog-header" bind="dialogHeader">Search for Match</div>
<div class="dialog-body" bind="dialogBody">
<div class="grid-layout layout-tighter"><table>
<tr>
<td colspan="2">Search for "<span bind="cellTextSpan"></span>"</td>
<td><input bind="input" /></td>
</tr>
<tr>
<td width="1%"><input type="radio" name="cell-recon-search-for-match-mode" checked="true" bind="radioSimilar" /></td>
<td>Match other cells with same content</td>
</tr>
<tr>
<td width="1%"><input type="radio" name="cell-recon-search-for-match-mode" bind="radioOne" /></td>
<td>Match this cell only</td>
</tr>
</table></div>
</div>
<div class="dialog-footer" bind="dialogFooter">
<button class="button button-primary" bind="okButton">Match</button>
<button class="button" bind="newButton">New Topic</button>
<button class="button" bind="clearButton">Don't Reconcile Cell</button>
<button class="button" bind="cancelButton">Cancel</button>
</div>
</div>
</div>