Can I create 1 form that does different things based on what radio button is chosen. for example
If I create 4 HTML views that each do a slightly different task say
1 Proof of ownership
2 Invoice
3 Technical Sheet
3 Sales Sheet
If I select radio button 1 it will print my proof of ownership HTML view
If I select radio button 2 it will print my invoice HTML form
and so on.
Logic tells me it can be done but I am lost as to what code to use and how. currently to print the proof of ownership HTML view I use the code
openUrl((((("https://creator.zoho.com/" + zoho.adminuser) + "/") + zoho.appname) + "/view-embed/Proof_Of_Ownership/same=") + input.thisone, "same window");
Which Ruben helped me with, but how can I get the radio button to form a relationship with the main form and open different HTML views dependant on which one is chosen.
Thanks
Sorry it is long winded,
Nigel