Data Collection and Table

I want to display the Data Collection as a table and interact with the table (change stuff on the page acording to the selected raw)

How can I do it?

Hi,
You should try using onRowSelect() on your table. Using this event you can get the selected row data and add your logic to change things on the page accordingly.

$w("#myTable").onRowSelect( (event) => { 
    let rowData = event.rowData; // {"fName": "John", "lName": "Doe"} 
    let rowIndex = event.rowIndex; // 2 
} );

10x!