
I want to do a field modification. For that, there is a event with the name - ModifyingFieldValue.
Sample --
[DataEventHandler(tableStr(Entity), DataEventType::ModifiedFieldValue)]
public static void Entity_onModifiedFieldValue(Common sender, DataEventArgs e)
{
}
Here, I don't have reference of field changed which I is present in table method i.e. Modifiedfield.
So please help me, how can i use onModifiedFieldValue event.
Thank you.
*This post is locked for comments
I have the same question (0)Cast e to ModifyFieldValueEventArgs type and then call parmFieldName() method.
You can see something very similar in this thread: Using pre/post event handlers on modifiedField() method of a table in case of customization.