Hi guys,
If I create a class which is an Event Handler class for a table : OnIsert, how to make Form whereby I trigger the insertion, to refresh all it's field ?
So this is the class (header) looks like :
class MyCaseAssociationOnInsert
{
[DataEventHandler(tableStr(CaseAssociation), DataEventType::Inserted)]
public static void CaseAssociation_onInserted(Common sender, DataEventArgs e)
{
…… <some code>
}
So basically the table is CaseAssociation, and the Form I referring is Case form, inside there is Case Association. My purpose for this Event handler is, when user ADD Case Association, it will trigger some action / job, and in that part will also update some of the fields in the Case Detail it self, like some fields in General section above it.

The Event Handler is running fine, only the information is not refresh, and I need to press Refresh button to make it updated. However with those parameter -> ( Common sender, DataEventArgs e ) --> I cannot see a possibility to reach the caller form data source to make it refresh automatically.
Kindly advice,
Thanks