cancel
Showing results for 
Search instead for 
Did you mean: 

Reg: Refresh the view

Former Member
0 Kudos

How to refresh the webdynpro view dynamically.

For eg: In some action i need to refresh the whole view and it shoud get initialised on refreshing dynamically.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

onAction() invalidate the node.

Regards,

ramesh

Edited by: Ramesh Babu V on Oct 22, 2008 6:40 PM

Edited by: Ramesh Babu V on Oct 22, 2008 6:42 PM

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi ,

I need to refresh my view on the reset button which is placed on the same view,

Former Member
0 Kudos

yes,for that look into my previous post

Former Member
0 Kudos

Hi,

Create a context of type boolean and set this to true on your reset button action. Now in wdDoModifyView write this line

if(wdContext.currentContextElement().get<boolean_attribute>())

{

view.resetView();

wdContext.currentContextElement().set<boolean_attribute>(false);

}

Regards,

Murtuza

Former Member
0 Kudos

Hi,

Invalidate the context nodes and then reassign values or set elements to the node.

Regards

Raghu

Former Member
0 Kudos

Hi,

In some action i need to refresh the whole view and it shoud get initialised on refreshing dynamically.

Call the same method which you use to populate the data in the initial state of your application.

Regards

Ayyapparaj