File: add-rows-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 (51 lines) | stat: -rw-r--r-- 2,077 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
<div class="dialog-frame"
     data-cy="add-rows-dialog">
    <form bind="dialogForm"
          data-cy="add-rows-form">
        <div class="dialog-header"
             bind="dialogHeader"></div>
        <div class="dialog-body"
             bind="dialogBody">
            <div style="display:flex;flex-direction:column;">
                <div style="display:flex;margin-bottom:15px;">
                    <label for="add-rows-count"
                           bind="addRowsCountLabel"
                           style="flex:1"></label>
                    <input type="number"
                           name="add-rows-count"
                           id="add-rows-count"
                           data-cy="row-count"
                           value="1"
                           step="1"
                           min="1"
                           style="flex:2;max-width:73px;margin-left:10px;">
                </div>
                <div style="display:flex;">
                    <label for="add-rows-position"
                           bind="addRowsPositionLabel"
                           style="flex:1"></label>
                    <select name="add-rows-position"
                            id="add-rows-position"
                            data-cy="insert-position"
                            style="flex:2;max-width:83px;">
                        <option bind="optionBeginning"
                                value=""></option>
                        <option bind="optionEnd"
                                value=""></option>
                    </select>
                </div>
            </div>
        </div>
        <div class="dialog-footer"
             bind="dialogFooter">
            <button type="submit"
                   class="button button-primary"
                   bind="okButton"
                   data-cy="submit-button"></button>
            <button type="button"
                    class="button"
                    bind="cancelButton"
                    data-cy="cancel-button"></button>
        </div>
    </form>
</div>