File: rename-column.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 (18 lines) | stat: -rw-r--r-- 772 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div class="dialog-frame" style="width: 400px">
    <form bind="form">
        <div class="dialog-border">
            <div class="dialog-header" bind="dialogHeader"></div>
            <div class="dialog-body" bind="dialogBody">
                <div class="grid-layout layout-normal layout-full">
                    <div style="padding: 10px">
                        <input aria-label="" bind="columnNameInput" size="40" autofocus/>
                    </div>
                </div>
            </div>
            <div class="dialog-footer" bind="dialogFooter">
                <button type="submit" class="button button-primary" bind="okButton"/>
                <button class="button" bind="cancelButton"></button>
            </div>
        </div>
    </form>
</div>