Community Tip - Learn all about the Community Ranking System, a fun gamification element of the PTC Community. 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.