Dear Dojo,
It is there any possibility to delete a row in a table within a virtual driver like selecting the row with the cursor and then press on the "Remove Row" button ?
I know that it can be done on the end of each row with a delete button but I am curious in this approach !
Thank you for your time!
Hi Catalin,
Just by selecting the row and a button you cannot, as won't know which row to delete, you miss the key.
You can select rows and delete by using a context menu. In Custom table context menu | DataMiner Docs there's documentation and an example on delete row(s).
Dear Catalin,
Another option is to create a visio page and use SelectionSetVar. When the user selects a table row in a visio, it will trigger a set of session variable on the selection, then you can have a delete button on the visio that will execute an automation using the SelectionSetVar. https://docs.dataminer.services/develop/schemadoc/Protocol/ColumnOptionOptionsOverview.html
I hope this helps!