I have a collection with two fields, a name ana a web address (I mistakenly labbeled it email). I display the name in the table. I would like to open the web address when someone clicks on a name. Here is the code I used. It doesn’t work. Can anyone help?
export function tblSupporters_rowSelect(event) {
let rowData = event.rowData;
let addr = rowData.email ;
wixLocationfrontend.to (addr);
}