Hi
I am building a custom widget that makes a selection on the map. To have the corresponding rows highlighted in the OOTB table widget how do I go about doing this?
Can I use
Solved! Go to Solution.
Hi @wanderer1 ,you can try select the record by dataSource.selectRecordById(recordId, record) or dataSource.selectRecordsByIds(recordIdArray, recordArray).
The table will hightlight these records automatically.
Hi @wanderer1 ,you can try select the record by dataSource.selectRecordById(recordId, record) or dataSource.selectRecordsByIds(recordIdArray, recordArray).
The table will hightlight these records automatically.
Hi @Allen_Zhang
That is what I have tried doing and it does select on the map, but not in the table.
Was missing the second argument. Thank you!