Forum Replies Created
-
4 years, 5 months ago in reply to: Property Binding with Special Characters #24383::
Problem solved:
The data is coming from an XML input, so the Special characters ar replaced in XML. A simple BO with a function solved my problem…
function replaceCharsFromXML(inpStr){
var outStr = inpStr.replace(/&/g, ‘&’);
outStr = outStr.replace(/"/g, ‘”‘);
outStr = outStr.replace(/</g, ‘<‘);
outStr = outStr.replace(/>/g, ‘>’);
outStr = outStr.replace(/'/g, ‘\”);
outStr = outStr.replace(/Ä/g, ‘Ä’);
outStr = outStr.replace(/Ö/g, ‘Ö’);
outStr = outStr.replace(/Ü/g, ‘Ü’);
outStr = outStr.replace(/ä/g, ‘ä’);
outStr = outStr.replace(/ö/g, ‘ö’);
outStr = outStr.replace(/ü/g, ‘Ü’);
outStr = outStr.replace(/ß/g, ‘ß’);
return outStr;
}5 years, 5 months ago in reply to: SOAP Parameters missing in envelope #192675 years, 5 months ago in reply to: SOAP Parameters missing in envelope #192855 years, 5 months ago in reply to: SOAP Parameters missing in envelope #192875 years, 4 months ago in reply to: SOAP Parameters missing in envelope #195735 years, 3 months ago in reply to: Custom Widget #196395 years, 3 months ago in reply to: Escaping user defined SQL Queries #19843
Viewing 9 posts - 1 through 9 (of 9 total)