Initial commit
Benjamin Renard authored 10 years ago
|
1) refresh_group_list=function() {
2) grouplist=$('#group-choice')[0];
3) $('a.group-choice').each(function(idx,a) {
4) $(a).parent().remove();
5) });
6)
7) if (groups.count()==0) {
8) $(grouplist).prepend('<li><a class="group-choice">Aucune groupe</a></li>');
9)
10) }
11) else {
12) groups.each(function(idx,group) {
13) $(grouplist).prepend('<li><a class="group-choice">'+group.name+'</a></li>');
14) });
15)
16) $('a.group-choice').each(function(idx,a) {
17) $(a).bind('click',on_group_choice_click);
18) });
19) }
20) }
21)
22)
23) /****************
24) * Add group
25) ****************/
26) on_show_add_group_modal=function(e) {
27) $('#add_group_modal #add_group_name').focus();
28) }
29)
30) on_valid_add_group_modal=function () {
31) var name=$('#add_group_name')[0].value;
32) if (name=='') {
33) alert('Vous devez saisir un nom !');
34) return;
35) }
36) if (groups[name]!==undefined) {
37) alert('Ce groupe exite déjà !');
38) return;
39) }
40) groups[name]=new Group(name);
41) refresh_group_list();
42) $('#add_group_modal').modal('hide');
43) groups.save();
44) view_group(groups[name]);
45) }
46)
47) on_close_add_group_modal=function () {
|