cancel
Showing results for 
Search instead for 
Did you mean: 
cancel
Showing results for 
Search instead for 
Did you mean: 

Community Tip - Have a PTC product question you need answered fast? Chances are someone has asked it before. Learn about the community search. X

Regarding "Find" functionality on infotable.

Bhanu_Manoj
9-Granite

Regarding "Find" functionality on infotable.

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

1 ACCEPTED SOLUTION

Accepted Solutions

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. 

View solution in original post

2 REPLIES 2

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.

Top Tags