ControllerDataSourceOptionsBuilder.OnLoaded(RazorBlock) Method
A function that is executed after data is loaded.
Namespace: DevExtreme.AspNet.Mvc.Builders.DataSources
Assembly: DevExtreme.AspNet.Core.dll
Declaration
public ControllerDataSourceOptionsBuilder OnLoaded(
RazorBlock jsFunc
)
Parameters
Name | Type | Description |
---|---|---|
jsFunc | RazorBlock | The Razor |
Returns
Type | Description |
---|---|
ControllerDataSourceOptionsBuilder | A reference to this instance after the method is called. |
Remarks
Use this method to specify a JavaScript handler for the client-side loaded
event.
@(Html.DevExtreme().DataGrid()
.DataSource(d => d.Mvc()
.OnLoaded(@<text>
function(e) {
// Handler code
}
</text>)
)
)
Refer to API Controllers for more information.
See Also