I am displaying the info of my #dataset1 on a table
I want to click on the row and have it open a Dynamic page, of course I want that link to be dynamic not static so I don’t need to configure everyone adds something to the dataset1
So I have a export function table1_rowSelect(event)
where i use wixLocation.to and it does work to internal pages like wixLocation.to(“/users”)
and to external like wixLocation.to(“http://wix.com”)
also works to static links to my dymanic pages: wixLocation.to(“/showevent/Romi-B-day”)
BUT! when i try the dynamic URL it shoes Error 404 when the website is public
wixLocation.to(“http://mysite.wixsite.com/showevent/{Event-Title}”)
wixLocation.to(“/showgroup/{Event-Title}”)
How can I do this then?