by default, the datePicker plugin is displaying the short name of day (Su, Mo, Tu, We, Th, Fr, Sa) (dayNamesMin)

I would to display the full name (Sunday....) (dayNames).

How to do it ?

I try it, but it doesn't work :

$("#datepicker").datepicker("option", "dayNames");
link|improve this question

79% accept rate
feedback

1 Answer

up vote 0 down vote accepted

This should work:

$('#datepicker').datepicker({
    dayNamesMin: ['Sunday', 'Monday', ...]
});
link|improve this answer
Yes, I think to do it, but we can not to use dayNames by default ? – bahamut100 Dec 9 '10 at 10:46
Not as far as I know, but you'd think it should be possible... – Deniz Dogan Dec 9 '10 at 10:48
hum ok, thanks ;) – bahamut100 Dec 9 '10 at 10:52
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.