cancel
Showing results for 
Search instead for 
Did you mean: 

Get the name of the event

Former Member
0 Kudos

Hi Experts,

I need to differentiate between actions being triggered from 3 buttons on my view , when i use the get_name method of the wdevent parameter in my event handler i get the same returning parameter from all the 3 i.e "ON_ACTION" and the get_string method in the same class needs an importing parameter which i am not sure of.

Please advice me as to how i can get differentiate between the 3 actions like may be get the name of the method i.e "EDIT" or "CHECK" ...

Thanks In Advance,

Chaitanya.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi, Using the following code, you can get the id of the button that is clicked

data: id type string.
 " get button id
  id = wdevent->get_string( 'ID' ).
Regards, Radhika.

Answers (0)