Hi Dojo,
I'm currently developing a protocol and everything is running fine. There is a small visual change I don't like. If I set multiple parameters at the same time they stuck changing the value. Why because for every change in a row a QAction is running which takes some time.
Start:
Update three values at the same time:
Result:
After some seconds and finishing the QAction (which at the end result a reset to "No Change"):
And after again some seconds we are following with the third value:
I hope it's clear what I want to achieve, all three values should change the value immediately to "Update Services" and afterwards the QAction should run row by row.
Is this possible?


Hi Felix, many thanks for your help. If I loose the row relation I could also do a check row by row, that's okay. Does this change the plan?
If I use "on group" action I need to add a group or?

yes, you need to create a group.
But if you trigger the qaction without a row relation, you would trigger it 3 times, even if you already processed your rows.
So you should a a condition to the group (e.g. your qaction sets a parameter to "complete" if everythings is processed) and only run the group if the condition is fulfilled.
Hi Stefan, did not test it, but can you try a trigger when the parameter changes (time change & type action),
then a "on group" action with type "add to execute" and then another action to run the qaction (on parameter & type "run actions")?
But as you lose the row relation then, you would need to store which rows changed in a buffer.