##// END OF EJS Templates
Custom queries: buttons to move column to top and bottom (#16326)....
Custom queries: buttons to move column to top and bottom (#16326). git-svn-id: http://svn.redmine.org/redmine/trunk@12991 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r11653:0e20ec697b82
r12716:54830abd6b94
Show More
datepicker.js
16 lines | 469 B | application/javascript | JavascriptLexer
function beforeShowDatePicker(input, inst) {
var default_date = null;
switch ($(input).attr("id")) {
case "issue_start_date" :
if ($("#issue_due_date").size() > 0) {
default_date = $("#issue_due_date").val();
}
break;
case "issue_due_date" :
if ($("#issue_start_date").size() > 0) {
default_date = $("#issue_start_date").val();
}
break;
}
$(input).datepicker("option", "defaultDate", default_date);
}