cancel
Showing results for 
Search instead for 
Did you mean: 

Reg: Order in which view and controller methods executed

Former Member
0 Kudos

Hi,

I want to know in which order the following methods get executed in the intial stage of application.

View wdinit()

wddomodify()

controller wdinit()

and when a we press a button or something what is the order in which the following methods get executed.

Action of corresponding button

wddomodify()

Thanks in advance.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

1. Component controller wdDoInit()

2. View controller wdDoInit()

3. Action handler

4. View controller wdDoModifyView(), only when action has been triggered

Armin

Answers (1)

Answers (1)

Former Member
0 Kudos

Hi Armin,

Thanks for the reply.

Just to make sure, Do u mean the on start of application the order is Controller Init(),View init()

on some action the order is actionhandler, wddomodify().

Thanks in advance.

PradeepBondla
Active Contributor
0 Kudos

Hi,

If I am not wrong, just put a message in each method of each controller and execute.

You will know it practically, you can test different tests on your own and there wont be any conflict answers in that.

Thanks,

PradeeP

Former Member
0 Kudos

Either that or better, he should learn to use the debugger and use breakpoints in the mentioned methods.

Armin