Community Tip - Stay updated on what is happening on the PTC Community by subscribing to PTC Community Announcements. X
Hi All,
Can someone please help me with the syntax of filter row by value functionality on an infotable. When I checked in snippets it shows .Find(yourRowValueObjectHere). I might be checking in a wrong way.
Please help.
Thanks and Regards
Solved! Go to Solution.
For "raw" find on infotable, you can put just Infotable columns and values passing as JSON. Something like:
myInfotable.Find({ columnName1: columnValue1, columnName2: columnValue2 });
And it returns the row with exact matching of both column values or null.
For "raw" find on infotable, you can put just Infotable columns and values passing as JSON. Something like:
myInfotable.Find({ columnName1: columnValue1, columnName2: columnValue2 });
And it returns the row with exact matching of both column values or null.
Thanks a lot Carles. It worked fine.