I'm passing a name field into a query string used on a page include, and the page fails to load the name contains the % sign.
According to skuid documentation on merge syntax, using double-braces should HTML-escape the data in the merge, so using % in the merge field it should spit out &percnt instead or something similar.
We can work around this by guiding users not to use the % sign in their record naming, but seems like this is a bug that could be fixed.
According to skuid documentation on merge syntax, using double-braces should HTML-escape the data in the merge, so using % in the merge field it should spit out &percnt instead or something similar.
We can work around this by guiding users not to use the % sign in their record naming, but seems like this is a bug that could be fixed.
Jack Sanford, Champion
which resolves to:
snap=Risk Adjustment % PVD 2019-06-03
and in the console shows up as:
https://c.cs65.visual.force.com/apex/include?snap=Risk%20Adjustment%20%%20PVD%202019-06-03&isinc...
It looks like the URL code for a space is %20
I can change it to pass a record id and query the model for the record name, but I'm not needing to query the model for any other reason, we just use the text from the name for display on the page include, so it'd be faster to not have to query.
Jack Sanford, Champion