top of page
Important forum update
This forum is migrating to one unified Wix community forum starting July 26th, and will be read-only during the process.
Wishlist Page is the official platform for requesting new features. You can vote, comment, and track the status of the requested features.
bottom of page
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); }