File: split-multi-valued-cells-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 (62 lines) | stat: -rw-r--r-- 3,458 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<div class="dialog-frame" style="min-width: 600px;">
  <div class="dialog-border">
    <div class="dialog-header" bind="dialogHeader"></div>
    <div class="dialog-body" bind="dialogBody">
      <div class="grid-layout layout-looser layout-full"><table role="presentation"><tr>
        <td>
          <div class="grid-layout layout-tighter"><table role="presentation">
            <tr>
              <td colspan="3"><h3><span bind="or_views_howSplit"></span></h3></td>
            </tr>
            <tr>
              <td width="1%"><input type="radio" checked="true" name="split-by-mode" value="separator" id="$split-multi-valued-cells-by-separator" /></td>
              <td colspan="2"><label for="$split-multi-valued-cells-by-separator" bind="or_views_bySep"></label></td>
            </tr>
            <tr><td></td>
              <td bind="or_views_separator"></td>
              <td><input size="10" bind="separatorInput" />
                <input type="checkbox" bind="regexInput" id="$split-multi-valued-cells-regex" />
                <label for="$split-multi-valued-cells-regex" bind="or_views_regExp"></label></td>
            </tr>
            <tr>
              <td width="1%"><input type="radio" name="split-by-mode" value="lengths" id="$split-multi-valued-cells-by-lengths" /></td>
              <td colspan="2"><label for="$split-multi-valued-cells-by-lengths" bind="or_views_fieldLen"></label></td>
            </tr>
            <tr><td></td>
              <td colspan="3"><textarea style="width: 100%;" bind="lengthsTextarea"></textarea></td>
            </tr>
            <tr><td></td>
              <td colspan="2" bind="or_views_listInt"></td>
            </tr>
            <tr>
              <td width="1%"><input type="radio" name="split-by-mode" value="cases" id="$split-multi-valued-cells-by-case" /></td>
              <td colspan="2"><label for="$split-multi-valued-cells-by-case" bind="or_views_byCase"></label></td>
              <td><input type="checkbox" bind="reverseTransitionCases" id="$split-cell-transition-order-case" />
              <label for="$split-cell-transition-order-case" bind="or_views_revCase"></label></td>
            </tr>
            <tr>
              <td></td>
              <td colspan="2"><span bind="or_views_caseExample"></span></td>
              <td colspan="2"><span style="padding-left: 25px;" bind="or_views_caseReverseExample"></span></td>
            </tr>
            <tr>
              <td width="1%"><input type="radio" name="split-by-mode" value="number" id="$split-multi-valued-cells-by-number" /></td>
              <td colspan="2"><label for="$split-multi-valued-cells-by-number" bind="or_views_byNumber"></label></td>
              <td><input type="checkbox" bind="reverseTransitionNumbers" id="$split-cell-transition-order-number" />
              <label for="$split-cell-transition-order-number" bind="or_views_revNum"></label></td>
            </tr>
            <tr>
              <td></td>
              <td colspan="2"><span bind="or_views_numberExample"></span></td>
              <td colspan="2"><span style="padding-left: 25px;" bind="or_views_numberReverseExample"></span></td>
            </tr>
          </table></div>
        </td>
      </table></div>
    </div>
    <div class="dialog-footer" bind="dialogFooter">
      <button class="button button-primary" bind="okButton"></button>
      <button class="button" bind="cancelButton"></button>
    </div>
  </div>
</div>