You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Tell me a way to update fields in the DataTable within one function (this works great if you hang it, for example, on a Button.Pressed handler), but in one function sequentially.
I don't see two consecutive changes using the change_value function with a break for some external function, I immediately get the last result after the work is done (speed(3) in the example.
I tried to create custom message class and run
self.post_message(MyCustomMessage())
sleep(3) # some hard workself.post_message(MyCustomMessage())
But the result was the same.
The same applies to different cells; changes are not applied one by one, but only after the function is completely completed
The text was updated successfully, but these errors were encountered:
Tell me a way to update fields in the DataTable within one function (this works great if you hang it, for example, on a Button.Pressed handler), but in one function sequentially.
I don't see two consecutive changes using the change_value function with a break for some external function, I immediately get the last result after the work is done (speed(3) in the example.
I tried to create custom message class and run
But the result was the same.
The same applies to different cells; changes are not applied one by one, but only after the function is completely completed
The text was updated successfully, but these errors were encountered: