blob: f9a540a1cb176cb2cd93d428a70707174a4bcee4 (
plain)
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
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
|
var grappelli = {};
(function($) {
grappelli.collapseHandlerClass = "collapse-handler";
grappelli.collapsedBlockedClass = "collapse-blocked";
grappelli.openAllClass = "open-handler";
grappelli.closeAllClass = "close-handler";
grappelli.collapseClass = "collapse";
grappelli.closedClass = "closed";
grappelli.openClass = "open";
grappelli.collapseHandler = function() {
if (!$("body").hasClass(grappelli.collapsedBlockedClass)) {
$(this).parents("." + grappelli.collapseClass).first()
.toggleClass(grappelli.closedClass)
.toggleClass(grappelli.openClass);
}
return false;
};
grappelli.addCollapseHandlerClass = function() {
$("." + this.collapseClass).each(function() {
var node = $(this).children().first();
if (node.is("h2") || node.is("h3") || node.is("h4")) {
node.addClass(grappelli.collapseHandlerClass)
}
});
};
grappelli.registerCollapseHandler = function() {
$("." + this.collapseHandlerClass).click(this.collapseHandler);
};
grappelli.registerOpenAllHandler = function() {
$("." + this.openAllClass).click(this.openAllHandler);
};
/*
* Open all
*/
grappelli.openAllHandler = function() {
// get .group and not .collapse because it doesn't necessarily have .collapse
$(this).parents(".group")
.removeClass(grappelli.closedClass)
.addClass(grappelli.openClass)
.find("." + grappelli.collapseClass)
.removeClass(grappelli.closedClass)
.addClass(grappelli.openClass);
};
grappelli.registerCloseAllHandler = function() {
$("." + this.closeAllClass).click(this.closeAllHandler);
};
/*
* Close all
*/
grappelli.closeAllHandler = function() {
// get .group and not .collapse because it doesn't necessarily have .collapse
$(this).parents(".group")
.find("." + grappelli.collapseClass)
.removeClass(grappelli.openClass)
.addClass(grappelli.closedClass);
};
grappelli.initCollapsible = function() {
grappelli.addCollapseHandlerClass();
grappelli.registerCollapseHandler();
grappelli.registerOpenAllHandler();
grappelli.registerCloseAllHandler();
$("." + grappelli.collapseClass + " ul.errorlist").each(function() {
$(this).parents("." + grappelli.collapseClass)
.removeClass(grappelli.closedClass)
.addClass(grappelli.openClass);
});
};
grappelli.getFormat = function(type) {
if (type == "date") {
var format = DATE_FORMAT.toLowerCase().replace(/%\w/g, function(str) {
str = str.replace(/%/, '');
return str + str;
});
}
return format;
}
grappelli.initDateAndTimePicker = function() {
var options = {
//appendText: '(mm/dd/yyyy)',
showOn: 'button',
buttonImageOnly: false,
buttonText: '',
dateFormat: grappelli.getFormat('date'),
showAnim: ''
};
var dateFields = $("input[class*='vDateField']:not([id*='__prefix__'])");
dateFields.datepicker(options);
if (typeof IS_POPUP != "undefined" && IS_POPUP) {
dateFields.datepicker('disable');
}
$("input[class*='vTimeField']:not([id*='__prefix__'])").timepicker();
};
grappelli.initHacks = function() {
$('p.datetime').each(function() {
var text = $(this).html();
text = text.replace(/^\w*: /, "");
text = text.replace(/<br>.*: /, "<br>");
$(this).html(text);
});
};
// Using window.load instead of document ready for better performances
// It prevents lots of glitches, like divs that moves around upon loading
//
// Use $(document).ready only if you have to deal with images since it will
// wait for the document to be fully loaded/rendered before running the function
// while window.load method will run as soon as the DOM/CSS is loaded.
$(window).load(function() {
// we do the hacks first!
// because we manipulate dom via innerHTML => loose events
grappelli.initHacks();
grappelli.initCollapsible();
grappelli.initDateAndTimePicker();
});
})(django.jQuery);
|