Sid
I have done it this way:
Hope that helps,
Mike
BTW, URL Redirector is a pretty old widget that hasn’t been updated recently. In Mx8, there is an action in Nanoflow commons that you could use to do this.
Hi Sid,
I recently had the same problem. With the introduction of Nanoflows and custom Javascript actions in Mendix 8 there is now an additional way to solve this. Note that this is only possible if you are able to upgrade to Mendix Studio Pro 8.
export async function Redirect(url) {
// BEGIN USER CODE
window.open(url);
// END USER CODE
}
Hope this helps.