cancel
Showing results for 
Search instead for 
Did you mean: 

about webdynpro actions

Former Member
0 Kudos

hi to all

iam little but confusion among

ACTION ,, EVENT., EVENT HANDLER METHODS

can any one give me description about all these

thank u inadvance

ratan

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Ratan,

Method can be void and it can be return type.

Method with Event: it perform some system actions such as click, enter etc..

Action it performs system events. for example. You can use actions with UI Elements where as methods are not.

For example: Submit Button

onActionSubmit()

{

}

Note: Method with event and Action both are almost Similar

To avoid Confusion:

Use actions when use UI Elements

Use methods if you want write individual methods

Answers (2)

Answers (2)

arun_srinivasan
Contributor
0 Kudos
Former Member
0 Kudos

Chris Whealy "Inside Web Dynpro for Java", chapter 3.7.

Armin