Ok, this is disturbing! I have a table (actually I have few, and they all have the same problem) filled with data, and when you click on a cell, I call the table1_cellSelect ( event ), check which cell is clicked, and do things.
I used to check the clicked cell like this:
export async function table1_cellSelect ( event ) {
if ( event . cellColumnId === “delete” )
and it worked fine. But today I checked the site and all those functions don’t work anymore, because cellColumnId is now “column_khiwsi7g”, not “delete” (I wrote “console.log(event . cellColumnId)” to the console).
Why did you change it???
I fill the table like that:
let trash_img = “https://static.wixstatic.com/media/6434c4_ab4789cf21e2465dbfccb9eecf6a12c3~mv2.png”
tableRows . push ({
“id” : item . specificProductId ,
“delete” : trash_img ,
“title” : title ,
“price” : item . price ,
“pic” : item . img ,
“type” : type
}
);
I used to get “delete” as the cellColumnId when the delete cell (the image) is been clicked. Now I get some random id…