Hello! I wanted to know how can we delete a row from the UI-table widget just by clicking on it OR by any other way.
I don't want to bodge! I have made it work by deleting the entire data and then adding the new data without that particular row. But I think its a suboptimal solution. I believe there's a simpler and better way to do it.
I use the following structure to add a row into the ui-table. Perhaps something similar for deleting a single row?
msg.payload = {
command: "addRow",
arguments: [
{
"Name": Rock
},
true
],
returnPromise: true
}
Is there a command for simply removing a row either by clicking on it or by matching a cell of that row?
I am a complete newbie and thus I am facing difficulty in understanding the Tabulator documentation.
Thanks!