mrhyde1st

Results 3 comments of mrhyde1st

That kind of thing is to stop people breaking the system as it stops the system treating the text as a potential escape code.

Ok, I believe the fix...change the expression to value=value.replace(/(\\\\|\\)/gm,"\\\\"); this should leave escaped \ already untouched, and escape singular ones, though it gets a little complicated if there are more...

Ok found the fix, within stratus-forms-data-SPServices added after the fieldsToRead; ``` var queryOptions = '' + '' + ''; ``` After CAMLQuery: query, add: ``` CAMLQueryOptions: queryOptions, ```