DatePicker 回发后消失
我有一个与 jquery DatePicker 关联的 asp:TextBox。此输入有一个更新文字控件的 onTextChangedEvent。
所有这些代码都位于 UpdatePanel 内,因此文字控件会更改,但页面不会刷新。
我面临的问题是,当事件触发时,显示 DatePicker 的图像消失。这是我的一段代码:
<asp:UpdatePanel ID="UpdatePanel" runat="server">
<ContentTemplate>
<asp:TextBox runat="server" OnTextChanged="EditFromDate_TextChanged"
AutoPostBack="true"></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
然后我有:
$(document).ready(function()
{
$("#EditFromDate").datepicker({ ... });
});
我应该将启动 DatePicker 的代码放在其他地方吗? 我尝试使用 Page.RegisterStartup 将其放入页面加载中,但结果相同。
谢谢!
I have an asp:TextBox associated to a jquery DatePicker. This input has a onTextChangedEvent that updates a Literal Control.
All this code is inside an UpdatePanel so the Literal Control changes but the page doesn't refresh.
The problem I'm facing is that when the event fires, the image that displays the DatePicker disappears. Here's a piece of my code:
<asp:UpdatePanel ID="UpdatePanel" runat="server">
<ContentTemplate>
<asp:TextBox runat="server" OnTextChanged="EditFromDate_TextChanged"
AutoPostBack="true"></asp:TextBox>
</ContentTemplate>
</asp:UpdatePanel>
Then I have:
$(document).ready(function()
{
$("#EditFromDate").datepicker({ ... });
});
Should I put the code that initiates the DatePicker elsewhere?
I've tried placing it in Page Load using Page.RegisterStartup but same result.
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用
pageLoad
,它会在部分回发时触发:$(document).ready() 和 pageLoad() 不一样!
Use
pageLoad
, it fires on partial postbacks:$(document).ready() and pageLoad() are not the same!