I have two problems:
Button 'Today' does not work because the calendar is not initialized with the selected value, and initialize the current month.
I need override onclick for button 'Done' - how do this?
script:
$('.datefield_month').datepicker({
changeMonth: true,
changeYear: true,
showButtonPanel: true,
dateFormat: 'MM, yy',
onClose: function (dateText, inst) {
var month = $("#ui-datepicker-div .ui-datepicker-month :selected").val();
var year = $("#ui-datepicker-div .ui-datepicker-year :selected").val();
$(this).val($.datepicker.formatDate('MM, yy', new Date(year, month, 1)));
}
});
view:
<input name = "Month" class = "datefield_month" value="@Model.Month.ToString("Y", Session["culture"] as CultureInfo)" type="text" id ="Month" />