DatePicker 回发后消失

发布于 2024-12-13 04:21:23 字数 697 浏览 0 评论 0原文

我有一个与 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

夏了南城 2024-12-20 04:21:23

使用 pageLoad,它会在部分回发时触发:

   function pageLoad() { 
      $("#EditFromDate").datepicker({ ... });

   } 

$(document).ready() 和 pageLoad() 不一样!

Use pageLoad, it fires on partial postbacks:

   function pageLoad() { 
      $("#EditFromDate").datepicker({ ... });

   } 

$(document).ready() and pageLoad() are not the same!

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文