You need to sign in to do that
Don't have an account?
Rodrigo_Rocha
How to use lightning:navigation to navigate to a stand alone app?
We currently have some code similar to this that's been triggered whenever a user clicks on a button:
I'm not sure if the lightning:navigation will support navigate to a different app (new window) as well be able to receive parameters whenever "called".
var urlEvent = $A.get("e.force:navigateToURL"); urlEvent.setParams({ "url": '/c/myApp.app?recId=' + component.get('v.recordId') + '&Rows=' + component.get('v.Rows') + '&Bytes=' + component.get('v.Bytes') }); urlEvent.fire();Is it possible to replace it using the lightning:navigation?
I'm not sure if the lightning:navigation will support navigate to a different app (new window) as well be able to receive parameters whenever "called".