Question
PwC
UA
Posted: Jul 7, 2019
Last activity: Jul 20, 2019
Last activity: 20 Jul 2019 13:11 EDT
Closed
Display issue while using launchLocalAction API
Hi,
I'm using Javascript API to launch overlay from the custom control and got some issues with it's display.
- revealEffectName parameter doesn't work, I tried values "From bottom" and "anim-bottom"
- there is a scroll bar in the overlay
my js code:
var overlayOptions:{
flowAction: "MyFlowAction",
displayMode: pega.api.ui.constants.OVERLAY,
event: myEvent,
flowActionClass: "MyCo-Data-MyClass",
contextPage: "D_MyPage",
isMobileFullScreen: true,
revealEffectName: "anim-bottom", //Also tried "From Bottom"
closingEffectName: "anim-in-animation"
};
pega.api.ui.actions.LaunchLocalAction(overlayOptions);
Did anybody try using this API? What should I change?