This repository was archived by the owner on Oct 11, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathfield-search.html
More file actions
51 lines (51 loc) · 1.69 KB
/
field-search.html
File metadata and controls
51 lines (51 loc) · 1.69 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
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="field-search.css">
<script type="text/montage-serialization">
{
"owner": {
"properties": {
"element": {"#": "owner"}
}
},
"field": {
"prototype": "blue-shark/ui/field.reel",
"properties": {
"element": {"#": "field"}
},
"bindings": {
"label": {"<-": "@owner.label"},
"documentationReference": {"<-": "@owner.documentationReference"},
"disabled": {"<-": "@owner.disabled"},
"errorMessage": {"<-": "@owner.errorMessage || @control.errorMessage"},
"hasError": {"<-": "@owner.hasError || !!@control.errorMessage"},
"isMandatory": {"<-": "@owner.isMandatory"},
"isLoading": {"<-": "@owner.isLoading"}
}
},
"control": {
"prototype": "blue-shark/ui/search.reel",
"properties": {
"element": {"#": "control"}
},
"bindings": {
"disabled": {"<-": "@owner.disabled"},
"controller": {"<-": "@owner.controller"},
"labelPath": {"<-": "@owner.labelPath"},
"initialOptions": {"<-": "@owner.initialOptions"},
"hasNoneButton": {"<-": "@owner.hasNoneButton"},
"value": {"<->": "@owner.value"}
}
}
}
</script>
</head>
<body>
<div data-montage-id="owner" class="FieldSearch">
<div data-montage-id="field">
<div data-montage-id="control"></div>
</div>
</div>
</body>
</html>