关于 jquery 和 .NET 的基本问题

发布于 2024-07-10 12:02:06 字数 365 浏览 8 评论 0原文

我想制作一个页面,以便可以在“jquery 弹出窗口”中选择过滤器,但我不知道如何接收结果。

假设我有一个带有 ListView 的页面,并且我想为其选择过滤器(可能从列表中进行多项选择),所以我制作了一个不同的 ASPX 并使用 jquery 打开它(实际上 jqModal) 通过 ajax,用户选择过滤器并接受。

如何获得该选择来重新绑定我的 ListView?

(...)

我刚刚在 jQuery 弹出窗口中选择了上面链接的 URL,这正是我想要做的...它是如何完成的?

I want to make a page so I can select filters in a "jquery popup", but I don't know how to receive the results.

Suppose I have a page with a ListView, and I want to select filters for it (perhaps with multiple selection from a list), so I make a different ASPX and open it using jquery (actually jqModal) via ajax, the user selects the filters, and accepts.

How do I get that selection to rebind my ListView?

(...)

I just selected the URL for the link above in a jQuery popup, that's exactly what I want to do... how is it accomplished?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

迷你仙 2024-07-17 12:02:06

我认为最简单的解决方案是使用 style="display:none" 的 asp 按钮。 在关闭弹出窗口的 javascript 函数中,假装单击该按钮。 然后有一个常规的事件处理程序来重新绑定您的列表视图。

HTML:

<div class="jqmWindow" id="dialog">
    <asp:ListView runat="server" id="lvFilter" />
</div>
<asp:Button runat="server" id="btnFilter" OnClick="btnFilter_Click" style="disaply:none" />

Javascript:

$('#dialog').jqm({
    onHide:function() {
      $("#<%= btnFilter.ClientID %>").click();
    }
});

服务器端:

btnFilter_Click 进行正常过滤。

I think the simplest solution would be to have an asp button with style="display:none". In the javascript function which closes the popup, fake a click on that button. Then have a regular event handler to rebind your listview.

HTML:

<div class="jqmWindow" id="dialog">
    <asp:ListView runat="server" id="lvFilter" />
</div>
<asp:Button runat="server" id="btnFilter" OnClick="btnFilter_Click" style="disaply:none" />

Javascript:

$('#dialog').jqm({
    onHide:function() {
      $("#<%= btnFilter.ClientID %>").click();
    }
});

Server Side:

btnFilter_Click todo normal filtering.

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