How to customize output date format with jQuery UI calandar -
i have requirement show date in specific format. month in date should show 4 characters. i.e., jan., feb., mar., apr., may, june, july, sept., oct., nov., dec.. possible show month in format using jquery ui datepicker, maintaining in date format?
you can manipulate datepicker method , callback:
$(".selector").datepicker( { monthnamesshort: [ "jan", "feb", "mar", "apr", "may", "jun", "jul", "aug", "sep", "oct", "nov", "dec" ]} );
Comments
Post a Comment