Calender Icon for Date and Time field

0
Hi Reader, I want to make calender icon invisible for the non-editable date and time field. How can I do this? Thanks and Regards, Harshraj Singh  
asked
1 answers
5

Hi Harshraj Singh,

 

#1 If the date will be always non-editable for all users, you can use ‘text’ widget instead date picker.

#2 You can achieve this with css, sample below

     .mx-datepicker .mx-compound-control .btn.mx-button[disabled] {

          display: none;

      }

 

Thanks!

answered