- I’ve connect a table to a dataSet and got a table view with pagination. This is working great.
- The pagination is working grate
- Clicking on a row Firing this code:
$w("#table1").onRowSelect( (event) => {
let rowData = event.rowData;
console.log(rowData)
wixLocation.to("/show-incident/")
});
-
But this is working only for the first page… If i try to go to the second page in the pagination etc i’m getting undefined for the rowData object.
-
In preview mode everything is working great. getting the rowData for the even every time. But after publishing in production it is working only for the first page.
Can any one help me with this please.
10x