Sir I think you have to mention the pyActionInfo in Pages & Classes Tab on js file.
@prakashkonkar1061 Жыл бұрын
make more pega+ js videos
@manim6037 Жыл бұрын
Nice explanation. I'm able to run data transform and activity but set value, refresh section are not working. Is there any possibility to make a video for other APIs Thanks to run activity: function callActivityfunction() { var options = { name: "CallSetCustomerInfoActivity", contextPage: "pyWorkPage", event: event }; pega.api.ui.actions.runActivity(options); }
@AshutoshKumar-bd7hf7 ай бұрын
@manim6037 Can you tell me how did you run activity in Java Script? I am not able to do that
@manim60377 ай бұрын
@@AshutoshKumar-bd7hf I am calling from custom section. Added below code inside the script. function callCustomActivity(){ var options={name: "SetUserID", contextPage: "pyWorkPage", event: event}; pega.api.ui.actions.runActivity(options);}
@manim60377 ай бұрын
@@AshutoshKumar-bd7hf Using custom section: click function callfunction(){ var options = { name: "CallActivity", contextPage: "pyPortal", - refering from UserHeader section event: event }; pega.api.ui.actions.runActivity(options); }
@manim60377 ай бұрын
@@AshutoshKumar-bd7hf click function callfunction(){ var options = { name: "CallActivity", contextPage: "pyPortal", event: event }; pega.api.ui.actions.runActivity(options); }
@manim60377 ай бұрын
@@AshutoshKumar-bd7hf function callActivityfunction() { var options = { name: "CallSetCustomerInfoActivity", contextPage: "pyWorkPage", event: event }; pega.api.ui.actions.runActivity(options); }