Like filter not working with special characters
Hello,
When i'm filtering the things using the like filter which contains special characters, it's not returning any results. I have tried using escape characters still no result.
Did anyone face this issue? How did you overcome this?
var filterPattern = "Thingworx Navigate (TN)";
var params = {
inclusive: true /* BOOLEAN */,
fieldName: "Organization" /* STRING */,
t: Devices /* INFOTABLE */,
pattern: filterPattern + "*" /* STRING */,
};
var result = Resources["InfoTableFunctions"].LikeFilter(params);
-thanks,
Abhiram

