-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathselectBug.jade
More file actions
51 lines (33 loc) · 1.33 KB
/
selectBug.jade
File metadata and controls
51 lines (33 loc) · 1.33 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
head
title selectBug
body
h1 Welcome to Meteor!
+hello
template(name="hello")
+autoForm(collection="Test" id='roomUpdateForm' validation="blur" type="insert")
br
+afQuickField(name="itemArray" firstOption=false)
br
+afQuickField(name="item2" firstOption=false)
unless afFieldValueIs name="item2" value=1
p Cell is 023-102-2342
+afQuickField(name="item.nested" firstOption=false)
unless afFieldValueIs name="item.nested" value="2"
p Cell is 023-102-2342
+afQuickField(name="item3.nest.nested" firstOption=false)
unless afFieldValueIs name="item3.nest.nested" value="3"
p Cell is 023-102-2342
h2 Update
+autoForm collection="Test" doc=docTest id="updateBookForm" type="update"
br
+afQuickField(name="itemArray" firstOption=false)
br
+afQuickField(name="item2" firstOption=false)
unless afFieldValueIs name="item2" value="1"
p Cell is 023-102-2342
+afQuickField(name="item.nested" firstOption=false)
unless afFieldValueIs name="item.nested" value="2"
p Cell is 023-102-2342
+afQuickField(name="item3.nest.nested" firstOption=false)
unless afFieldValueIs name="item3.nest.nested" value="3"
p Cell is 023-102-2342