cancel
Showing results for 
Search instead for 
Did you mean: 

Issue in calling the event

Former Member
0 Kudos

Hi all,

How to call an event inside some event or inside some other function.

Thanks in Advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Answers (3)

Answers (3)

sridhar_k2
Active Contributor
0 Kudos

Hi,

You can call any Event from Event Method use this below Syntax.

wdThis.onAction<ActionName>(wdEvent);

If you want to call from normal method use this one.

wdThis.onAction<ActionName>(null);

Regards,

SK

Former Member
0 Kudos

Thanks for your quick reply.

With the help of all your answers I solved the Issue.

Former Member
0 Kudos

Hi,

you can call an event from anywhere by,

wdThis.onAction<ActionName>(<b>null</b>);

Former Member
0 Kudos

Hi,

Have a look at this thread

Regards,

Saravanan K