Opening of dynamic item page from table row select always displays information of first row

Hi @piushkg :raised_hand_with_fingers_splayed:

You need to access the link from the clicked row using the onRowSelect( ) event handler, then get item link and redirect the user to that page.

$w('#table').onRowSelect(event => {
    wixLocation.to(event.rowData['link-deal-submission-title'])
})

Hope that helps~!
Happy Coding :fire:
Ahmad