Implement event handler in a grid and concatenate values

96 views Asked by At

I'm looking for the way how to implement RowUpdated event handler in Answers grid. I've implemented RowUpdated event handler in the value column of the grid but it doesn't work.

enter image description here

I want to concatenate the value of the attribute column value in the description field when I change the value from the drop-down list

enter image description here

Can anyone provide advice please?

1

There are 1 answers

2
Evgeny Kralko On
protected virtual void CSAnswers_Value_FieldUpdated(PXCache sender, PXFieldUpdatedEventArgs e)
{

}

Works fine on my instance, BUT event will be raised only if

  1. Focus has been changed
  2. Ctrl+Enter pressed

Which is fine from my standpoint. Do you really need to get an event right after the value changing?