jqueryのdatepickerを設定しています。私はこれをカスタマイズして、datepicker div内に、次のような数か月のカスタムメニューを作成しました。
<div class="custom_menu">
<div class="month">January 2012</div>
<div class="month">February 2012</div>
<div class="month">March 2012</div>
</div>
私が探しているのは、ユーザーが月をクリックしたときに、日付ピッカーにその月のビューを更新させたい場合です。たとえば、いくつかの擬似コード
$('.month').live('click', function(){
var newmonth = $(this).text(); //get the month in a suitable format
$('#current_datpicker').update('month', newmonth); //update the datepicker to show this month
});
APIドキュメントを見て何も表示されないので、このようなことを行うことはできますか...
編集
私が直面している問題は、ページに複数のdatepickerインスタンスがある場合に、#current_datepicker(つまり正しいdatepicker ID)を取得する方法です。現在のdatepickerトリガー入力IDはどこかに保存されていますか?