Paging icons not visible in data grid

0
I have bind data in data grid and set following properties. But Icons are not visible on UI.   ‘’     When I inspect, buttons are there but dont know which css property is not allowing them to display,        
asked
4 answers
6

Check if the following are available in your Atlas_Core module. If not, do the steps below.

 

Create a brand new empty project using Mendix 10,

export the Atlas and Atlas_Filled, and import to your project.

image.png

answered
0

Hi Shikha,

 

Could you also provide some screenshots of the CSS that is applied to the button and span classes of your invisible icons?

 

And, just to be sure, there is no specific class set in the Appearance tab of your DataGrid?

answered
0

Had the same problem. Deleting Atlas Core from Marketplace modules and reinstalling it from the marketplace solved the problem.

 

You can try that.

answered
0

Even I Have faced the same issue , The code written below will solve the issue

.pagination-icon{

  height: 20px;

  width:20px;

 }

answered