File: templating-exporter-dialog.html

package info (click to toggle)
openrefine 3.9.5-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 44,440 kB
  • sloc: javascript: 106,758; java: 91,946; xml: 6,634; sh: 614; makefile: 78; python: 71; sql: 59
file content (29 lines) | stat: -rw-r--r-- 2,283 bytes parent folder | download
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
<div class="dialog-frame" style="min-width: 900px;">
  <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 style="vertical-align: top"><div class="grid-layout layout-tighter layout-full" bind="controls"><table role="presentation">
          <tr><td><label for="prefixTextareaId" bind="or_dialog_prefix"></label></td></tr>
          <tr><td><div class="input-container"><textarea  spellcheck="false" bind="prefixTextarea" id="prefixTextareaId" class="code" wrap="off" style="min-height: 5em; min-width: 430px;"></textarea></div></td></tr>
          <tr><td><label for="templateTextareaId" bind="or_dialog_rowTmpl"></label></td></tr>
          <tr><td><div class="input-container"><textarea  spellcheck="false" bind="templateTextarea" id="templateTextareaId" class="code" wrap="off" style="min-height: 20em; min-width: 430px;"></textarea></div></td></tr>
          <tr><td><label for="separatorTextareaId" bind="or_dialog_rowSep"></label></td></tr>
          <tr><td><div class="input-container"><textarea  spellcheck="false" bind="separatorTextarea" id="separatorTextareaId" class="code" wrap="off" style="min-height: 3em; min-width: 430px;"></textarea></div></td></tr>
          <tr><td><label for="suffixTextareaId" bind="or_dialog_suffix"></label></td></tr>
          <tr><td><div class="input-container"><textarea  spellcheck="false" bind="suffixTextarea" id="suffixTextareaId" class="code" wrap="off" style="min-height: 5em; min-width: 430px;"></textarea></div></td></tr>
        </table></div></td>
        <td width="50%" style="vertical-align: top">
          <div class="input-container"><textarea aria-label="" spellcheck="false" bind="previewTextarea" class="code" wrap="off" style="min-height: 40em; min-width: 430px;"></textarea></div>
        </td>
      </tr>
    </table></div>
  </div>
  <div class="dialog-footer" bind="dialogFooter" style="justify-content: space-between">
      <button class="button" bind="resetButton"></button>
    <div class="dialog-footer-bg">
      <button class="button" bind="exportButton"></button>
      <button class="button" bind="cancelButton"></button>
    </div>
  </div>
</div>