I am using datepicker to select year-month only. I filter out the day part like so:
$(el).datepicker(
{changeMonth: true,
changeYear: true,
dateFormat:'yymm' }
);
The code comes from the dataInit option in jqGrid. When the user clicks in a day only the year-month is passed back to the input box.
Is there any way to just show months where the days are?
Thanks.