Stacking notifications of the same type #173
-
Hi, I want to show several notifications of the same type (success) shortly created after another in a for-loop. I can only see a maximum of two notifications (and not four as I expected). Is there a limit to how many notifications can be visualized at a time? |
Beta Was this translation helpful? Give feedback.
Answered by
FlorianJacta
Jun 8, 2023
Replies: 1 comment 6 replies
-
Hi, There should be a maximum of 5 notifications: from taipy.gui import Gui, notify
def update(state):
for i in range(10):
notify(state, 'scenario', "Success")
Gui('<|Push|button|on_action=update|>').run() Do you have a code to replicate it? |
Beta Was this translation helpful? Give feedback.
6 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The issue is closed, and the PR is merged into the 'develop' branch. You will be able to test it in the next release.