Mendix 10 upgrade causes issues with Atlas Core -- missing icons in widgets

0
Hi,   I just upgraded my app to Mendix 10.12.5 and while testing, I noticed that we have missing icons for: 1. Input reference set selector - the arrow next to the textbox is missing (white box now, pressing it still does the expected) 2. Date picker - the calendar icon which opens the calendar is missing, the button is just a white square now (button itself works) 3. Pagination arrows - the arrows that allowed you to scroll through pages in the data grids are missing, we only see the numbers. If you click on the approximate area they were in, the pages still change. 4. Menu sidebar when in initially closed state is showing the icons of the menu items and also part of the text of each corresponding menu item.    I upgraded to the latest version of Atlas Core, I deleted it and reinstalled it several time, several versions of it. Nothing helped. The classes are there in the Inspect, but they somehow do not get recognized and do not apply the expected changes. 
asked
2 answers
1

Hello Cojocaru,

you can try update the relevant components and widgets,

https://docs.mendix.com/refguide/upgrading-from-9-to-10/#upgrade-widgets

 

for date picker please try this work around solution,

.mx-icon-calendar {
font-family: "Glyphicons Halflings";
}

.mx-icon-calendar:before { 
    content:"\e109";
}

Similar way add other missing icon with alternate icons,

.myclass .glyphicon-share-alt:before { 
    content:"\e109";
}

Thanks & Regards,

Manikandan K

answered
0

Hello Cojocaru,

 

Was the custom CSS the right fix for you?

Also were you able to resolve the menu item width issue as well?

We are having the exact same issues in out Mx10 upgrade and would like to know what all helped fix them 

Thanks!

answered