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
Ensures that nested control groups are correctly redrawn when a redraw handler is triggered.
The fix addresses an issue where changes within nested control groups were not always reflected in the UI after a redraw. It achieves this by:
- Ensuring the parent form knows of all control groups in the hierarchy
- Checking control group invalidation status in the base form latte template, to trigger redraw when necessary
- Marking all ancestor control groups as invalid when the onRedraw event is triggered
This change provides a smoother user experience by ensuring that the UI accurately reflects the current state of the form.