forked from RubyLouvre/avalon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathif4.html
40 lines (34 loc) · 980 Bytes
/
if4.html
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
<!DOCTYPE html>
<html>
<head>
<title>by 司徒正美</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width">
<script src="../avalon.js"></script>
<script>
avalon.define({
$id: "grid",
array: [{
name: 1,
toggle: true
},{
name: 1,
toggle: true
},{
name: 3,
toggle: false
},{
name: 1,
toggle: true
}]
})
</script>
</head>
<body>
<div ms-controller="grid">
<ul>
<li ms-repeat="array" ms-if-loop="el.toggle"><input ms-duplex="el.name">{{el.name}}</li>
</ul>
</div>
</body>
</html>