v2.0.2
Key updates July 2024
CXBOX (Demo, Code Samples)
Creating a Line in the PickList Popup
We have added the ability to create a line directly within the picklist popup when clicking "Add" on the sheet.
Added new pagination modes
The navigation arrows and limit settings block are removed if the number of records is less than the limit. Pagination modes:
1) nextAndPreviousWithHasNext Live Sample ·
Next button availability logic:
- If hasNext (from /data) is true, Next button is available.
- If hasNext (from /data) is false, Next button is disabled.
2) nextAndPreviousSmart Live Sample ·
Next button availability logic: If the number of records received from /data is less than _limit, Next button is disabled.
Disadvantages of this mode:
- If the number of records is a multiple of _limit, a single jump to a page with no records will occur, since it is impossible to determine whether this is the last page.
- If the number of records is a multiple of _limit, a request for the next page will be sent even if it does not exist. If this request returns an error, it should be handled with a try {} catch {} block.
3) Default nextAndPreviousWithCount The functionality remains the same.
Other Changes
see cxbox-code-samples changelog
CXBOX (Core Ui)
Fixed saving settings
Fixed the issue with saving settings when adding an option to the meta: add.fields.
CXBOX 4.0.0-M4 (Core)
Heap dump export
Fix heap dump export with actuator
Added an explicit Qualifier
Fixed conflict between mappers (cxboxObjectMapper and businessComponentMapper)
Other Changes
see cxbox changelog