Data Grid pagination next/previous arrows not visible after upgrading from Mendix 9 to Mendix 10

0
Hi Team,We are facing an issue with Data Grid pagination arrows after upgrading from Mendix 9 to Mendix 10.Steps to Reproduce:Open a page containing a Data Grid with pagination enabled.Add enough records so that multiple pages are created.Observe the next and previous navigation arrows in the pagination section.Actual Result:Next and previous arrow buttons are not visible at all.Expected Result:Pagination arrows should be clearly visible and accessible.Additional Observation:In Mendix 9, the arrows were visible but the color was very faint/light. After upgrading to Mendix 10, the arrows are completely missing.Has anyone faced a similar issue after migration to Mendix 10? Could this be related to Data Grid styling, Atlas changes, or icon rendering?Thanks
asked
3 answers
1

Hello,

Please use customized icons and custom CSS.Also, add arrow icons for the Next and Previous buttons using CSS.

answered
0

Hi Reemali


Please update the data widgets module in marketplace modules or redownload it.

Data widget module version should be the required version of mendix version 10.

Check again.

answered
0

Fix: Add this to your theme/web/custom.scss:


.mx-datagrid .mx-datagrid-pagination .mx-datagrid-prev-button,
.mx-datagrid .mx-datagrid-pagination .mx-datagrid-next-button {
color: #333333;
opacity: 1 !important;
visibility: visible !important;
}


If the arrows still don't appear, update your Atlas Core module to the latest Mendix 10 compatible version from the Marketplace, as a partial upgrade is the most common cause of this issue.


answered