Hi,
I'm working on a LCA which needs to be able to add items to an table in an connector through an context menu. I've seen this example: https://community.dataminer.services/question/automation-script-context-menu/?hilite=context+automation
and i'm currently working on an script as POC. However i ran into an issue where i try to delete an item through with the automation script
with this information: https://docs.dataminer.services/develop/api/NotifyTypes/NT_ALL_TRAP_INFO.html it says i should pass the additional data. However what is the additional data for deletion? Is that the guid of the row i want to delete?
I'll try to get the interapp calls on the connector as improvement but for now i'll have to work through the context menu.
Hi Gerwin,
When the context menu contains the option options="table:selection", it will pass along all the selected primary keys to the logic behind it.
You should be able to do the same within your code.
Thanks i’ll give it a try 🙂