How to get querystring value in stateless form?
I have written a custom function to show a stateless form.
- querystring = "";
- for each Account in Accountinfo
- {
- querystring = (querystring + "accid=" + (Account.ID)) + "&";
- }
- openUrl("#Form:Send_SMS?" + querystring, "Popup window", "height=400,width=400");
The forms opens correctly. But I am not able to access the query string passed in the form.
- l = input.accid;
It throws error accid is undefined.
What am I missing: