I am using the following code to fire the client events and the events are not being fired:
Telerik MVC Grid
@Html.Telerik().Grid(Model.Customers)
.ClientEvents(events => events.OnRowDataBound("onDataBound"))
.... further code
Event
function onDataBound(sender,eventArgs) { alert(eventArgs);}