forked from openiap/opencore
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathEditForm.html
More file actions
36 lines (36 loc) · 1.5 KB
/
Copy pathEditForm.html
File metadata and controls
36 lines (36 loc) · 1.5 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
<!-- <style>
body {
padding-top: 0px;
}
</style>
<link rel='stylesheet' href='https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css'> -->
<section>
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">name</label>
<div class="col-sm-4">
<input ng-model="ctrl.model.name" class="form-control input-md" ng-disabled="ctrl.loading==true" />
<button ng-click="ctrl.Save()" type="button" ng-disabled="ctrl.loading==true" class="btn btn-success "
translate lib="web">save</button>
</div>
</div>
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">fbeditor</label>
<div class="col-sm-4">
<input type="checkbox" ng-model="ctrl.model.fbeditor" class="form-control input-md"
ng-change="ctrl.renderform()" ng-disabled="ctrl.loading==true" />
</div>
</div>
</section>
<div id="fb-editor" ng-show="ctrl.model.fbeditor==true">
</div>
<div ng-show="ctrl.model.fbeditor!=true">
<div class="form-inline">
<label for="sid" class="col-sm-2 control-label" translate lib="web">Wizard</label>
<div class="col-sm-4">
<input type="checkbox" ng-model="ctrl.model.wizard" class="form-control input-md"
ng-change="ctrl.renderform()" ng-disabled="ctrl.loading==true" />
</div>
</div>
</div>
<div id="builder" ng-show="ctrl.model.fbeditor==false">
</div>