Telerik Grid eventType ClientEvents

时间:2011-08-18 07:43:13

标签: jquery asp.net-mvc telerik telerik-grid

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

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

但不是:

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

OnDataBound事件的eventType是什么?  谢谢。最诚挚的问候。

1 个答案:

答案 0 :(得分:1)

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

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