WaveMaker 11.11.6 - Release date: 14 July 2025
WaveMaker's Release 11.11.6 introduces global error handling in mobile apps to prevent crashes, new React Native enhancements, and delivers several bug fixes across web and mobile app.
Features
React Native
Introduced global error handling for render failures in mobile apps
To improve mobile app stability, a global error handling mechanism has been added to catch unhandled render errors.
If a render failure occurs, instead of crashing, the app now displays a fallback screen showing the error message and provides the following options:
- Go to Home: Navigate back to the home screen
- Go Back: Return to the previous screen
This prevents app crashes and ensures a more graceful recovery from rendering issues.

Enhancements
React Native
Added CSS class to target individual panes in Accordion widget
A new CSS class .app-accordion-pane
has been introduced to allow styling of individual accordion panes within the Accordion widget.
This enables custom styling like assigning different border colors or backgrounds for each pane.
Example:
.app-accordion-pane {
border-left: 4px solid red;
}
Added support for ellipsis handling in Label widget on Android
On Android, when the Label widget had wrap is false and Number of Lines = 1, long text was not truncating with an ellipsis, unlike on Web Preview and iOS.
To address this, a new property Enable Android Ellipsis has been added to the Label widget’s properties panel.
When enabled, it ensures that long text is truncated with an ellipsis on Android as expected.
Enabling Enable Android Ellipsis disables rich text formatting (e.g., bold, links) on Android.
By default, this property is set to false.
Added control to prevent onChange trigger from script updates in Form fields
Previously, when the datavalue
of a Form field was updated via script, the onChange event callback would also get triggered automatically.
To give developers more control, a new property Skip on change event from script has been added to the form field’s properties panel.
When enabled, the onChange callback will only trigger when the user updates the value from the UI, and not when it's updated through scripts.
This property is disabled by default, so existing behavior remains unchanged unless explicitly modified.
Bugs
Web
Fixed chart loading issue in prefabs used within Tab widget
Resolved an issue where Chart widgets inside a Prefab failed to render properly when the Prefab was placed inside multiple tabs of a Tab widget.
Charts loaded fine in the first tab, but remained stuck on loading when switching to other tabs. This behavior has now been fixed, charts render correctly across all tabs.
Fixed issue with form submission using enter key
enter key
Resolved an issue where pressing enter
inside form fields did not trigger form submission when a Chips widget was present.
Form submission via the Enter
key now works as expected.
Fixed multiple pagination issues in List widget
Several pagination-related bugs in the List widget have been addressed:
In Studio when the Page Size property was cleared, it was getting auto-populated with a default value on navigating between tabs or refreshing, this has been fixed.
Pagination is was showing even when list had only one page, this has been fixed now. Pagination will only be shown if list has more than one page.
Pagination was only showing first page, this has been fixed now. Pagination now correctly showsw all pages available in list as expected.
Fixed missing suggestions for Mapped Field in Live Filter widget
Suggestions were not showing for the Mapped Field property when adding custom fields in the Live Filter widget.
This is now fixed, suggestions appear as expected.
React Native
Fixed Dialog height issue on orientation change
Resolved an issue where the Dialog widget height was not adjusting correctly when the device orientation changed between portrait and landscape modes.
Dialogs now resize properly to fit the screen after orientation changes, ensuring consistent layout and usability.