Hello,
I have a form called Employees with a field called Name (Single Field). I want when I click Submit then to redirect in another form (Details) which has a lookup field (connected with Name) called User name. I did it with the usage of openUrl
urlStr = ((("/" + zoho.adminuser) + "/") + zoho.appname) + "/#Form:Details?";
openUrl(urlStr, "same window");
My question is how can I set the value (which I will insert every time in the Name field) as default in the lookup field?
I did this one but it does not work (it shows the lookup field and the -select-.)
urlStr = ((("/" + zoho.adminuser) + "/") + zoho.appname) + "/#Form:Details?User_Name=";
openUrl(urlStr, "same window");