I am using the following code to fire the client events and the events are not being fired:
Telerik MVC Grid
@Ht开发者_如何学编程ml.Telerik().Grid(Model.Customers)
.ClientEvents(events => events.OnRowDataBound("onDataBound"))
.... further code
Event
function onDataBound(sender,eventArgs) { alert(eventArgs);}
Maybe you are using server binding, client events are fired with ajax binding only. You may refer to the grid's documentation here.
the script should look like below:
function onDataBound(e) {
alert(e)
}
That should fix the problem.
精彩评论