1
0
-1

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.

    CommentAdd your comment...

    1 answer

    1.  
      2
      1
      0

      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:

      1. Process the form submission
      2. Redirect to the specified Userview page
      3. Automatically trigger the uri scheme application and also you can pass submitted form fields in the url and use them in the uri scheme. 

        CommentAdd your comment...