-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselect_table_column.html
More file actions
50 lines (42 loc) · 2.03 KB
/
select_table_column.html
File metadata and controls
50 lines (42 loc) · 2.03 KB
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
<!DOCTYPE html>
<html>
<title>UnicodeCleaner: Select table & column</title>
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta charset="UTF-8">
<link rel="stylesheet" href="./css/style.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="js/select_table_column.js"></script>
<body>
<div class="w3-container w3-flat-belize-hole">
<h2>UnicodeCleaner - Select table & column</h2>
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="setup_database_connection.html">DB Connection</a></li>
<li class="active"><a href="select_table_column.html">Select Table & Column</a></li>
<li><a href="clean_iconv.html">Clean by Iconv</a></li>
<li><a href="clean_translation_table.html">Clean by Translation Table</a></li>
</ul>
<p>Please select the table, identification column and target column you wish to clean.</p>
<p> </p>
<table id="config_table">
<tr><td>Table: </td><td><select id="target_table"><option></option></select></td></tr>
<tr><td>Identification column: </td><td><select id="target_column_id"><option></option></select></td></tr>
<tr><td>Target column: </td><td><select id="target_column_target"><option></option></select></td></tr>
</table>
<p> </p>
<p id="sys-message-target-table"></p>
<p id="sys-message-target-column-id"></p>
<p id="sys-message-target-column-target"></p>
<p> </p>
</div>
<div id="loader"></div>
<p id="result"></p>
<p id="pagination"></p>
<div id="datatable">
<table id="table-main">
<thead></thead>
<tbody></tbody>
</table>
</div>
</body>
</html>