I have an HTML input element for my datepicker... pretty normal
<input type="text" id="from_date">
And a pretty normal setup for allowing the Month / Year changes
$('#from_date').datepicker({
dateFormat: "mm/yy",
changeMonth: true,
changeYear: true
});
But the Month dropdown shows names like "Jan" instead of "1" or "01"
How can I change the dropdown values to be the numerical representation?