When developing a Connector with dataminer integration studio.
I would like to have a Configure Button in a Table Column. So when I click the Configure in a row in the table, a popup window should appear with the values from that row pre-filled. Is this possible? Or is there a better way to solve it?
Adding a button to the column works, but adding a pagebutton does not.
Hi Anna
If the intention is to be able to edit the row in one go, then the ContextMenu is an option. With this, you get a 'popup' with the configured cells pre-filled (see dependencyValues attribute | DataMiner Docs for the syntax, at the bottom).
This can then trigger a QAction to update the row with the received values.
If the intention is to execute a certain action with the values of the row, you can add a column with a button that will trigger the QAction. Inside the QAction you can then retrieve the row (with the row="true" option to get the primary key) and run the action.
with the same process i need to show row data on a diff page so any method available for that.