How to change Datepicker icon?

0
Hello,   I would like to change the datepicker default icon with my own one. How can I do that?   Thanks for help
asked
3 answers
0

People with more experience in styling might be able to provide a better answer, but - using css or javascript, you should be able to remove this class or override it and then replace it with your own:

 

image.png

 

Alternatively, there are many custom datepickers available in the marketplace that you could use, but I assume you'd rather stick with the standard Mendix functionality.

answered
0

Hello Simon,

you can change the content of the icon by override the class like below.

for me, I used mIcons module to change the icon with different one,

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

 

answered
0

Hello Siman,

try with Advance date picker or Customizable Date Picker if that will help, else go with CSS changes.

answered