RandomSec/main/webapp/modules/core/scripts/views/data-table/cell-editor.html
David Huynh 6da68b37ef Added class 'button' to buttons.
git-svn-id: http://google-refine.googlecode.com/svn/trunk@1580 7d457c2a-affb-35e4-300a-418c747d4874
2010-10-16 06:43:01 +00:00

17 lines
952 B
HTML

<table class="grid-layout layout-tighest layout-full data-table-cell-editor-layout">
<tr>
<td colspan="5"><textarea class="data-table-cell-editor-editor" bind="textarea" /></td>
</tr>
<tr>
<td width="1%" align="center"><button class="button" bind="okButton">Apply</button><br/><span class="data-table-cell-editor-key">Enter</span></td>
<td width="1%" align="center"><button class="button" bind="cancelButton">Cancel</button><br/><span class="data-table-cell-editor-key">Esc</span></td>
<td><select bind="typeSelect">
<option value="text">text</option>
<option value="number">number</option>
<option value="boolean">boolean</option>
<option value="date">date</option>
</select></td>
<td width="1%"><input type="checkbox" bind="applyOthersCheckbox" /></td>
<td>apply to other cells with<br/>same content <span class="data-table-cell-editor-key">(Ctrl-Enter)</span></td>
</tr>
</table>