Hi So, I’ve got a recruitment site with a different positions, The problem is that when you choose a position with mobile, you can not get the next page, but in desktop it’s working correct.
This is the page -
This is the code that leads to the next page withe the choosen position -
export function table1_rowSelect(event) {
console.log(“/PositionsManagement/” + event.rowData.positionId + “/” + encodeURI(event.rowData.title));
wixLocation.to(“/PositionsManagement/” + event.rowData.positionId + “/” + encodeURI(event.rowData.title));
/wixWindow.openLightbox(“View”, {
currentIndex: event.rowIndex,
items: $w(‘#tableJobs’).rows
});/
}
export function selectionField_change(event) {
filterTable();
}
Thanks!!