E
egarcia
Guest
Hello Dan, There is currently an issue when using apostrophes / single quotes in a query. Here is a workaround / fix. You could try updating the function _convertToABLWhereString() in progress.all.js (near line 410) and update the code to look like the following: // We need to build a template format string for the where string. // We'll first add positional info for the value if (type === STRING_OBJECT_TYPE) { format = "'{1}'"; value = value.replace(/'/g, "~'"); } Please let me know how it goes if you try it out. I hope this helps. Thanks.
Continue reading...
Continue reading...