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:
Availability:
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