[SOLVED] Remove row on cell select - help!

Awesome!

I wrote a little function that you can call from a specific column, hope this helps someone:

//Listen to cellSelect
export function tableRepeater_cellSelect(event) {
  //Put existing table into an array to be able to splice it
  let filteredData = $w("#tableRepeater").rows;
  //Splice out the selected row by using row index from event 
  let cellRowIndex = event.cellRowIndex; 
  //Only splice the one row which was selected
  filteredData.splice(cellRowIndex, 1); 
  //Handler respond with any cell clicked upon, just choose one that you like to have this feature
  if (event.cellColumnId === "ColumnNameHere") { 
    //Fill up the table with new fresh rows
    $w("#applicantsRepeater").rows = filteredData; 
    //Good to go! Have fun WiXing :D 
  }