##// END OF EJS Templates
tooltips added on Gantt chart to view the details of the issues...
tooltips added on Gantt chart to view the details of the issues (added csshover behaviour to make it work under IE) git-svn-id: http://redmine.rubyforge.org/svn/trunk@160 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r127:ff65a5b22a54
r157:f35194e6046e
Show More
application.js
18 lines | 503 B | application/javascript | JavascriptLexer
function checkAll (id, checked) {
var el = document.getElementById(id);
for (var i = 0; i < el.elements.length; i++) {
if (el.elements[i].disabled==false) {
el.elements[i].checked = checked;
}
}
}
function addFileField() {
var f = document.createElement("input");
f.type = "file";
f.name = "attachments[]";
f.size = 30;
p = document.getElementById("attachments_p");
p.appendChild(document.createElement("br"));
p.appendChild(f);
}