Joget DX 8 Stable Released
The stable release for Joget DX 8 is now available, with a focus on UX and Governance.
To implement the automatic redirection with custom URI scheme, follow these steps: Add an empty Rich Text widget. Add the below code using custom HTML and you can hide the rich text widget.
<script> $(document).ready(function(){ window.location.href = "outlook:"; }); </script>
Configure the redirection to the rich text after form submission
This setup will:
I have a form. I need when the form submitted to also invoke a custom URI scheme (like tel://xyz) to open an application in the local machine. It works if I use it as hyperlink but I need it also as a post form submitting process and not only as independent hyperlink.