Is there a limit to the number of URL parameters I can have?
I am trying to create a flexible search feature for my application in Zoho Creator using a stateless form. The form will run a script that looks like this:
- urlStr = "https://creatorapp.zoho.com/<my-username>/<application-name>/#Report:All_Products?ID=[";
- for each record in Add_Product[Name.containsIgnoreCase(input.Name)]
- {
- urlStr = urlStr + record.ID + ",";
- }
- openUrl(urlStr.concat("]"),"new window");
It is supposed to build a URL which takes the record IDs of all of the records that match the condition (name must contain whatever was inputted into the stateless form. It created the URL which lists the parameters like this "#Report:All_Products?ID=[recordID, recordID, recordID,]" listing all of the record identifiers. However, it seems to limit the amount of IDs I have in the parameter as it returns the error below when I have a certain amount of IDs:
Is there anyway I can make this method of search work? Or are the limits something that are going to stop me from using this method? If so, are there any other alternative ways of searching using a stateless form? I tried using
this tutorial but it was outdated and too complex for what I was looking to do.