-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdata.html
More file actions
executable file
·58 lines (46 loc) · 1.87 KB
/
data.html
File metadata and controls
executable file
·58 lines (46 loc) · 1.87 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
51
52
53
54
55
56
57
<table style="width:100%" >
<tr>
<td id="item-list" class="well">
<div id="grid-table">
<table id="app-list" class="table table-hover table-striped">
<thead>
<tr>
<th>Table Name</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="table in schemaData" id="row_{{table.name}}">
<td ng-click="showData()">{{table.name}}</td>
</tr>
</tbody>
</table>
</div>
</td>
<td> </td>
<td id="app-details" class="well">
<div class="navbar">
<div class="navbar-inner"><div class="brand">Manage Data</div>
</div>
</div>
<div id="splash">
<div class="alert alert-info">
<li class="icon-info-sign"></li>
Select a table from the left to begin viewing / editing data. Click to edit a particular value in the rendered table.
</div>
</div>
<div>
<div class="detail-view">
<div id="grid-container">
<div id="schema-main" ng-grid="browseOptions"></div>
<div ng-show = "relatedOptions.length">
<select ng-disabled= "selectedRow.length==0" ng-model = "related">
<option value="">Related Data</option>
<option ng-click="showRelated()" ng-repeat="option in relatedOptions" value="{{option.name}}">{{option.name}}</option>
</select>
</div>
</div>
</div>
</div>
</td>
</tr>
</table>