Table - row select and go to url from the same row

I have a table connected to a database, and in the database there is a column containing url.
I want to make the rowSelect event to go to the url contained in the same row.

Help would be appreciated, thanks

Hi HalfnHalf -

Maybe this forum post/discussion will be of help: https://www.wix.com/code/home/forum/community-discussion/open-local-page-on-table-row-select

Best,
Nick

Also, here is some quick, untested code that may help get you to your final solution:

CODE:

export function table1_rowSelect(event) {

let rowData = event.rowData;

wixLocation.to(rowData.yourURLColumn);
}

OR

export function table1_rowSelect(event) {
wixLocation.to(event.rowData.yourURLColumn);
}