Думаю, вам понадобится включить его методом onSelect:
$( "#<%= this.txtFrom.ClientID %>" ).datepicker({
showOn: 'both',
buttonImage: "Images/calendar.gif",
buttonImageOnly: true,
showmonth:true,
autoSize: true,
changeMonth: true,
changeYear: true,
showAnim: 'slideDown',
buttonText: "",
duration: 'fast',
showOtherMonths: true,
selectOtherMonths: true,
// all your other options above.
onSelect: function(dateText, inst) {
var d = new Date(inst.selectedYear, inst.selectedMonth, inst.selectedDay),
format = $.datepicker.formatDate( 'DD, d MM, yy', d )
this.alt = format; //You may want to use title instead of alt, depending on what element you are using.
}
});
Я использую текст alt
в этом примере, чтобы дать вам формат ввода
живой пример:http://jsbin.com/eliwut/