Hello Team,
I have a table with several configurable columns. Whenever an edit is made to these columns, a QAction is triggered based on the parameter ID.
I have created a DataMiner automation script that toggles the default value based on specific logic. It operates as a two-way protocol, where data is fetched from an IP, and any edits made are updated on the server.
I can toggle the default value using engine->element->table->getRow()->setRow()
, and I am using IEngine
to execute this logic. However, the data is not uploaded to the IP because it does not trigger the QActions associated with the parameter ID. However, when I perform the action through the DataMiner UI, it works as expected.
How to I trigger the event(trigger) while updating the configurable columns using dataminer automation script?