日付ピッカーの画像をこのように無効にした後、クリック可能/有効にするにはどうすればよいですか?
$("#_ctl0_MainContent_txtFromDateTime").datepicker({
showOn: "button",
buttonImage: "../images/calendar.gif",
buttonImageOnly: true,
buttonText: "Please Select Date",
onSelect: function() {
// $(this).datepicker("option", "dateFormat", "MM d yy")
$("#_ctl0_MainContent_hdnFromDateTime").val($(this).val());
}
});
$("#_ctl0_MainContent_txtFromDateTime").datepicker('disable');
私が使用する場合
$("#_ctl0_MainContent_txtFromDateTime").datepicker('enable');
動作しません