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: 700px;">
<div class="dialog-border">
<div class="dialog-header" bind="dialogHeader"></div>
<form bind="form">
<div class="dialog-body" bind="dialogBody">
<div class="grid-layout layout-normal layout-full"><table role="presentation" cols="2" style="width: 700px">
<tr>
<td width="1%" style="white-space: pre;"><label for="columnNameInputId" bind="or_views_newCol"></label></td>
<td><input bind="columnNameInput" id="columnNameInputId" size="40" /></td>
</tr>
<tr>
<td width="1%" style="white-space: pre;" bind="or_views_onErr"></td>
<td>
<input type="radio" name="create-column-dialog-onerror-choice" value="set-to-blank" checked id="$add-column-error-set-to-blank" />
<label for="$add-column-error-set-to-blank" bind="or_views_setBlank"></label>
<input type="radio" name="create-column-dialog-onerror-choice" value="store-error" id="$add-column-error-store-error" />
<label for="$add-column-error-store-error" bind="or_views_storeErr"></label>
<input type="radio" name="create-column-dialog-onerror-choice" value="keep-original" id="$add-column-error-keep-original" />
<label for="$add-column-error-keep-original" bind="or_views_copyVal"></label></td>
</tr>
<tr><td colspan="2">$EXPRESSION_PREVIEW_WIDGET$</td></tr>
</table></div>
</div>
<div class="dialog-footer" bind="dialogFooter">
<button class="button button-primary" type="submit" bind="okButton"></button>
<button class="button" bind="cancelButton"></button>
</div>
</form>
</div>
</div>
|