Using the custom view on a field, I prepare the text as a hyper link to another record on another page. This works great except in the cases where the text contains special characters (a + in my particular case) where it fails to find the linked record. I suspect other special characters might also have an influence. For example, the custom code resolves to:
bla-bla/Defaults_list.php?q=(sDefaultDescription~equals~Swipe Bingo EGM+Server)
The linked record has as its text in the sDefaultDescription column "Swipe Bingo EGM+Server". If I replace that with "Swipe Bingo EGM and Server", the search succeeds as it does with all other text not containing a plus sign. I conclude the search function is interpreting the '+' to mean something other than plain text. My question is how should I prepare the text in the link?
If I enclose the text in double quotes as in ?q=(sDefaultDescription~equals~"Swipe Bingo EGM+Server"), it gets omitted entirely in the hyperlink (i.e. all that shows is ?q=(sDefaultDescription~equals~). If I enclose the text in single quotes as in ?q=(sDefaultDescription~equals~'Swipe Bingo EGM+Server'), it fails to find the target and I surmise it is because the single quotes are assumed part of the text. Suggestions?
Thanks in advance.