Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hello,
Can somebody help me to write a service in thingworx where infotable data value is checked if it is found in a json data.
Thanks.
Solved! Go to Solution.
var info = [INFOTABLE];
for( var i = 0; i < info.length; i++){
//Get the infotable row values
//Search in JSON
if(isFound == true){
//Get the required value
}
}
If possible share the sample dataset.
Can you please explain bit more about your use case?
I have a json data which has multiple json arrays. I have an infotable which has data which can be compared to the json data. If at all i find the value in the json then i have to get certain key value pairs of that object.
var info = [INFOTABLE];
for( var i = 0; i < info.length; i++){
//Get the infotable row values
//Search in JSON
if(isFound == true){
//Get the required value
}
}
If possible share the sample dataset.