Hi @lavnya we can write a very small java script code
steps:
1.create a new java script action in ur nano flow
2.add a string param url in that
3.
on the code tab user the param uwl and open the link in new tab like this
// BEGIN USER CODE
window.open(url,'_blank');
// END USER CODE
Hi Lavanya,
https://marketplace.mendix.com/link/component/119753
You can try this marketplace widget.
Thanks
You can take a copy of the OpenURL nanoflow action from the NanoflowCommons module and move it into one of your own. In the copy of the action go to the Code tab and edit the underlying JavaScript as follows.
Scroll down to the comment marked “// Web platform” and change the line
window.location.href = url;
to
window.open(url, "_blank");
This will only work for the web browsers. If you want to also target the native and hybrid platforms you’ll need to edit those sections as well.
Hope this helps.
Hi Lavanya
You can use URL Redirector widget.