Check documentation for the latest version of dhtmlxSuite afterProcessing DHTMLX Docs

afterProcessing

The event occurs after beforeInsert, beforeUpdate, beforeDelete events occur and relates to all operations: Insert, Update and Delete. It can be used to pass additional values to client side.

<cfset grid.event.attach("afterProcessing",handlerFunc)>

Parameters handlerFunc:

  • action - DataAction Object

Availability:

  • Available for Grid, TreeGrid, Tree, Scheduler, DataView, Form

Sample:

<cffunction name="doAfterProcessing">
    <cfargument name="action">
    <cfset ARGUMENTS.action.set_response_xml("<guid>some value</guid>")>
</cffunction>
<cfset grid.event.attach("afterProcessing",doAfterProcessing)>
Back to top