Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
更新パネル内で GM の日付ピッカー コントロールを使用しました。更新パネル内にもう 1 つのコントロール (ドロップダウン リスト) があります。
// update panel // datepicker // dropdownlist // close updatepanel
ページが (再) ロードされるたびに、日付ピッカーを TextBox にアンバインド/バインドする必要があります。タイムピッカーがどのように機能するかはわかりませんが、jQueryUI を使用すると、そのようなもの (js) を使用できます。
function pageLoad() { $("#myTextBox").unbind(); $("#myTextBox").datepicker(); }
テキストボックスはそのために使用する必要 がありますClientIDMode="Static"。
ClientIDMode="Static"