如何为mvc查找Telerik网格的排序、过滤事件?

发布于 2024-12-13 16:53:26 字数 819 浏览 2 评论 0原文

我在操作模式下使用 Telerik grid for mvc,我想找到排序和过滤事件,即当我单击列标题进行排序时调用 sort 事件,并且我想在以下情况下重置某个变量排序被称为我该怎么做...

当我单击标题部分时,单击事件未被识别不知道为什么,但它被取消了一些

我尝试显式绑定它并尝试为事件命名,但它不起作用

 $(".thead").bind("click.namespace");

 $(".t-link").bind("click.namespace");

或者

$("#gridID>table>thead").bind("click.namespace");

无法捕捉到它

 $(".thead").live("click.namespace", function (e) {
          console.log("t-head");
      });

,或者如果我做得

  $(document).click(function (e) {
      console.log(e.target);
      console.log($(e.target).attr("class"));
  });

很好单击表格单元格,但单击列标题时不会记录任何内容

在此处输入图像描述

I am using telerik grid for mvc in operation mode and i want find the sort and filter event that is when i click the column header for sorting the sort event is called and i want to reset a certain variable when sort is called how can i do that...

The click event is not being recognized when i click on the header part dont know why but some how its being cancelled

i have tried binding it explicitly and tried namespacing the event but it didnt work

 $(".thead").bind("click.namespace");

or

 $(".t-link").bind("click.namespace");

or

$("#gridID>table>thead").bind("click.namespace");

couldn't capture it with

 $(".thead").live("click.namespace", function (e) {
          console.log("t-head");
      });

or if i do

  $(document).click(function (e) {
      console.log(e.target);
      console.log($(e.target).attr("class"));
  });

works well with clicks on the table cell but when click on the column header nothing gets logged

enter image description here

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

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

发布评论

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

评论(1

夏至、离别 2024-12-20 16:53:26
.ClientEvents(events => events.OnDataBinding("yourFunction"))

function yourFunction() {
    alert("the grid is being databound - sort, filter, grouping or refresh has been used.");
}
.ClientEvents(events => events.OnDataBinding("yourFunction"))

function yourFunction() {
    alert("the grid is being databound - sort, filter, grouping or refresh has been used.");
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文