forked from jupiterjs/jquerymx
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathlist.html
More file actions
103 lines (86 loc) · 2.41 KB
/
list.html
File metadata and controls
103 lines (86 loc) · 2.41 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN"
"http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<title>List Helper Demo</title>
<style type='text/css'>
body {font-family: verdana}
li {border: solid 1px gray; padding: 5px; width: 250px;}
li a {color: red; font-weight: bold;}
p {width: 400px;}
</style>
</head>
<body>
<div id="demo-instructions">
<h1>Model List Helper Demo</h1>
<p>This demo shows how you might use Lists to implement deleting a list
of contacts.</p>
</div>
<div id="demo-html">
<div id='contacts'></div>
<a href='javascript://' id='destroyAll'>DESTROY ALL</a>
</div>
<script type='text/javascript'
src='../../../steal/steal.js'>
</script>
<script type='text/javascript' id="demo-source">
steal('jquery/model',
'jquery/dom/fixture',
'jquery/model/list',
function(){
// =============== SETUP FIXTURES ===============
$.fixture("GET /contacts", function(){
return [[{'id': 1,'name' : 'Justin Meyer','birthday': 403938000000},
{'id': 2,'name' : 'Brian Moschel','birthday': 437205600000},
{'id': 3,'name' : 'Mihael Konjevic','birthday': 483771600000}]];
});
$.fixture("POST /contacts/destroy", function(){
return true;
});
// =============== Contact Model ===============
$.Model("Contact",{
attributes : {
birthday : 'date'
},
findAll : "/contacts"
},{
ageThisYear : function(){
return new Date().getFullYear() -
this.birthday.getFullYear()
},
getBirthday : function(){
return ""+this.birthday.getFullYear()+
"-"+(this.birthday.getMonth()+1)+
"-"+this.birthday.getDate();
}
});
// =============== Contact List ===============
$.Model.List("Contact.List",{
destroy: "POST /contacts/destroy"
},{});
// =============== Get and List Contacts ===============
Contact.findAll({},function(contacts){
var contactsEl = $('#contacts');
$.each(contacts, function(i, contact){
var li = $('<li>')
.model(contact)
.html("<input type='checkbox'/> "+
contact.name+" "+
contact.ageThisYear() )
.appendTo(contactsEl);
});
contacts.bind("remove", function(ev, removed){
removed.elements(contactsEl).remove()
})
});
$("#destroyAll").click(function(){
//get all checked input model instances
$("#contacts input:checked").closest(".contact")
.models()
// destroy them
.destroy();
})
})
</script>
</body>
</html>