kanbanworkflowstimelinescrumrubyroadmapproject-planningproject-managementopenprojectangularissue-trackerifcgantt-chartganttbug-trackerboardsbcf
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
15 years ago
|
var Subform = Class.create({
|
||
|
lineIndex: 1,
|
||
|
parentElement: "",
|
||
|
initialize: function(rawHTML, lineIndex, parentElement) {
|
||
|
this.rawHTML = rawHTML;
|
||
|
this.lineIndex = lineIndex;
|
||
|
this.parentElement = parentElement;
|
||
|
},
|
||
15 years ago
|
|
||
15 years ago
|
parsedHTML: function() {
|
||
|
return this.rawHTML.replace(/INDEX/g, this.lineIndex++);
|
||
|
},
|
||
15 years ago
|
|
||
15 years ago
|
add: function() {
|
||
15 years ago
|
var e = $(this.parentElement);
|
||
|
Element.insert(e, { bottom: this.parsedHTML()});
|
||
|
recalculate_even_odd(e);
|
||
|
},
|
||
|
|
||
|
add_after: function(e) {
|
||
|
Element.insert(e, { after: this.parsedHTML()});
|
||
|
recalculate_even_odd($(this.parentElement));
|
||
|
},
|
||
|
|
||
|
add_on_top: function() {
|
||
|
var e = $(this.parentElement);
|
||
|
Element.insert(e, { top: this.parsedHTML()});
|
||
|
recalculate_even_odd(e);
|
||
15 years ago
|
}
|
||
|
});
|
||
|
|
||
|
function recalculate_even_odd(element) {
|
||
|
$A(element.childElements()).inject(
|
||
|
0,
|
||
|
function(acc, e)
|
||
|
{
|
||
|
e.removeClassName("even");
|
||
|
e.removeClassName("odd");
|
||
|
e.addClassName( (acc%2==0) ? "odd" : "even"); return ++acc;
|
||
|
}
|
||
|
)
|
||
|
}
|