Skip to main content
1-Visitor
June 11, 2020
Solved

Regarding "Find" functionality on infotable.

  • June 11, 2020
  • 1 reply
  • 4922 views

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

Best answer by CarlesColl

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. 

1 reply

1-Visitor
June 11, 2020

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. 

1-Visitor
June 11, 2020

Thanks a lot Carles. It worked fine.