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 的 datepicker 控件。在更新面板内部还有一个控件(下拉列表)。Onpageload 一切正常。在下拉列表的 Onselectedindexchange 之后,用户可以选择 datepicker 的值。它不工作。如何处理这个?
// update panel // datepicker // dropdownlist // close updatepanel
每次页面(重新)加载时,您都必须将日期选择器取消绑定/绑定到 TextBox。我不知道你的时间选择器是如何工作的,但是使用 jQueryUI,你可以使用类似的东西(js):
function pageLoad() { $("#myTextBox").unbind(); $("#myTextBox").datepicker(); }
您的文本框应该 ClientIDMode="Static"用于此目的。
ClientIDMode="Static"