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

Popular posts from this blog

c++ - Delete matches in OpenCV (Keypoints and descriptors) -

java - Could not locate OpenAL library -

sorting - opencl Bitonic sort with 64 bits keys -