$("#datepicker").datepicker( {
format: "mm-yyyy",
startView: "months",
minViewMode: "months"
});
$('[id*=txtdate]').datepicker({
changeMonth: true,
changeYear: true,
format: "mm-yyyy",
showButtonPanel: true,
language: "tr",
todayHighlight: true,
autoclose: true,
isRTL: true,
endDate: dateTo,
startView: "months",
minViewMode: "months"
});
$("#txtdate").change(function () {
if ($("[id$=txtdate]").val() == '') {
$("#txtdate").datepicker("setDate", month + '-' + (now.getFullYear()));
}
});
============================
--------------:Start Date:-------
$('[id*=txtdate]').datepicker({
changeMonth: true,
changeYear: true,
format: "mm-yyyy",
showButtonPanel: true,
language: "tr",
todayHighlight: true,
autoclose: true,
isRTL: true,
endDate: dateTo,
startDate: "01-1900",
startView: "months",
minViewMode: "months"
});
No comments:
Post a Comment