日付ピッカーの画像に添付されているTodayの日付を表示したいとします。現在の日付を表示するJquery Datepicker
$(document).ready(function() {
$("#TextBox1").datepicker({
changeMonth: true,
changeYear: true,
showOn: "button",
buttonImage: "../calendar_up.gif",
buttonImageOnly: true,
buttonText: "Select date",
showOtherMonths: true,
selectOtherMonths: true
});
任意の構成は、これを達成するために利用できるのですか?
TIA
彼は入力ピッカーのドロップダウンボックスで質問していますが、入力テキストボックスの値ではありません – Selvakumar