mirror of
https://github.com/usmannasir/cyberpanel.git
synced 2025-11-09 06:46:10 +01:00
Initial Commit
This commit is contained in:
@@ -0,0 +1,36 @@
|
||||
/* jQuery UI Datepicker */
|
||||
|
||||
$(function() {
|
||||
"use strict";
|
||||
$("#fromDate").datepicker({
|
||||
defaultDate: "+1w",
|
||||
changeMonth: true,
|
||||
numberOfMonths: 3,
|
||||
onClose: function(selectedDate) {
|
||||
$("#toDate").datepicker("option", "minDate", selectedDate);
|
||||
}
|
||||
});
|
||||
$("#toDate").datepicker({
|
||||
defaultDate: "+1w",
|
||||
changeMonth: true,
|
||||
numberOfMonths: 3,
|
||||
onClose: function(selectedDate) {
|
||||
$("#fromDate").datepicker("option", "maxDate", selectedDate);
|
||||
}
|
||||
});
|
||||
});
|
||||
|
||||
$(function() {
|
||||
"use strict";
|
||||
|
||||
$("#datepicker_multiple_months").datepicker({
|
||||
numberOfMonths: 3,
|
||||
showButtonPanel: true
|
||||
});
|
||||
|
||||
});
|
||||
|
||||
$(function() {
|
||||
"use strict";
|
||||
$(".datepicker").datepicker();
|
||||
});
|
||||
Reference in New Issue
Block a user