Hi,
I need to open multiple views. More precisely, I have a button which should generate multiple views, one for each value stored in a list:
- for each supplier in suppliers
- {
- sURL = ((((("https://creator.zoho.com/" + zoho.adminuser) + "/") + zoho.appname) + "/#View:Order?progID=") + input.progN + "&supplier=" + supplier);
- openUrl(sURL, "same window");
- }
With "same window" it opens only the view corresponding to the last value. Instead I need a view for each "supplier".
Could you help me, pleas?