Telerik Grid 事件类型 ClientEvents

发布于 2024-11-30 07:52:05 字数 312 浏览 0 评论 0原文

我如何在 jquery 中附加 Grid ClientEvent 的处理程序?例如:

$('#Grid').data('tGrid')
.bind('OnDataBound', function () 
{ 
 // do somethihg with $(this)
})

但不是:

.ClientEvents(events => events.OnDataBount(myFunc))

OnDataBound 事件的 eventType 是什么? 谢谢。此致。

How can i attach handler for Grid ClientEvent in jquery? For example:

$('#Grid').data('tGrid')
.bind('OnDataBound', function () 
{ 
 // do somethihg with $(this)
})

But not:

.ClientEvents(events => events.OnDataBount(myFunc))

What's eventType of OnDataBound event?
Thanks. Best Regards.

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

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

发布评论

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

评论(1

隐诗 2024-12-07 07:52:05

“on”前缀仅在创建网格时使用(即服务器端配置或客户端初始化)。要动态附加处理程序,您应该采用更像 jQuery 的方法:

$('#Grid').bind('dataBound', function () { 
    // do somethihg with $(this)
})

The "on" prefix is used only when the grid is created (i.e. server-side configuration or client-side initialization). To attach a handler dynamically, you should have a more jQuery-like approach:

$('#Grid').bind('dataBound', function () { 
    // do somethihg with $(this)
})
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文