What happened to event.cellColumnId?!

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… :frowning:

I’ve referred this to QA for evaluation.

Thank you for the fast response! waiting for your answer

Same problem here.

Check out this thread for my experience and a workaround -
My tables broke and I didn’t touch them, honest | Velo by Wix

Check here for the probable cause -
Table CellEvent API not Correct? | Velo by Wix

We will be reverting the change shortly and then introducing a new solution. I’ll keep you posted as soon as I have an update. Thanks!

@marlowe-shaeffer Hey, I see now that you’ve fixed it!!! Thanks!!