parent
e5f744654b
commit
b0d8e50cd7
@ -0,0 +1,17 @@ |
||||
<div class="panel panel-default"> |
||||
<div class="panel-heading"> |
||||
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3> |
||||
</div> |
||||
<table class="table table striped"> |
||||
<tr> |
||||
<th><span trspan="value"/></th> |
||||
<td><input id="textinput" class="form-control" ng-model="currentNode.data" ng-change="execFilters(_findScopeByKey('authParams'))"/></td> |
||||
</tr> |
||||
</table> |
||||
</div> |
||||
<script type="text/javascript"> |
||||
buttons=[{ |
||||
"title": "cancel", |
||||
"icon": "remove" |
||||
}]; |
||||
</script> |
@ -0,0 +1,18 @@ |
||||
<div class="panel panel-default"> |
||||
<div class="panel-heading"> |
||||
<h3 class="panel-title">{{translateTitle(currentNode)}}</h3> |
||||
</div> |
||||
<table class="table table-striped"> |
||||
<tbody> |
||||
<tr ng-repeat="n in currentNode.nodes"> |
||||
<th>{{translateTitle(n)}}</th> |
||||
<td> |
||||
<input class="form-control" ng-model="n.data" ng-change="execFilters(_findScopeByKey('authParams'))" /> |
||||
</td> |
||||
</tr> |
||||
</tbody> |
||||
</table> |
||||
<script type="text/javascript"> |
||||
buttons=[ |
||||
]; |
||||
</script> |
File diff suppressed because one or more lines are too long
Loading…
Reference in new issue