Defines the name of the JavaScript function that will handle the the OnDataBound client-side event.
Namespace: Telerik.Web.Mvc.UI.FluentAssembly: Telerik.Web.Mvc (in Telerik.Web.Mvc.dll) Version: 2012.1.419.235 (2012.1.419.235)
Syntax
| JavaScript |
|---|
function OnDataBound(onDataBoundHandlerName); |
Parameters
- onDataBoundHandlerName
- Type: System..::..String
The name of the JavaScript function that will handle the event.
Examples
CopyC#
<%= Html.Telerik().Grid(Model)
.Name("Grid")
.ClientEvents(events => events.OnDataBound("onDataBound"))
%>
See Also