RecroGridETEntityOnCustomFunctionAsync Method

It is called when a custom function set for RecroGrid is executed.

Definition

Namespace: Recrovit.RecroGridFramework
Assembly: Recrovit.RecroGrid (in Recrovit.RecroGrid.dll) Version: 6.1.0.23.1204.1+9d8b98a22c49d038b4e3323bfe56aa1d0eabe7ae
C#
protected override Task<(bool Success, TEntity )> OnCustomFunctionAsync(
	RecroTrack tracking,
	TEntity dataRec,
	RecroGridCustomFunctionEventArgs args,
	RGUIMessages messages
)

Parameters

tracking  RecroTrack
The tracking.
dataRec  TEntity
The data record.
args  RecroGridCustomFunctionEventArgs
The RecroGridCustomFunctionEventArgs instance containing the event data.
messages  RGUIMessages
The messages to be sent to the client.

Return Value

TaskValueTupleBoolean, TEntity
true if the execution is successful, otherwise false.

See Also