cancel
Showing results for 
Search instead for 
Did you mean: 

How to change screen transition in a splitapp in SAPUI5?

Former Member
0 Kudos

Hi,

I have a splitapp. I want to the change the transitions for the detail page while it is opening. The default provided by SAP is "slide". I want to have "show". I tried with the below code. However, it is not working.

  this.app.setDefaultTransitionNameMaster("show");

  this.app.setDefaultTransitionNameDetail("show");

  alert(this.app.getDefaultTransitionNameDetail());

Please help out.

Accepted Solutions (1)

Accepted Solutions (1)

former_member189945
Contributor
0 Kudos

Hi Senthil,

You can set DefaultTransitionName to splitapp control:


oSplitApp.setDefaultTransitionNameMaster("show");

oSplitApp.setDefaultTransitionNameDetail("show");

Regards,

Kimmo

Answers (0)