I have a date column in my grid and I’m trying to hide the calendar picker by overriding css styles. But its not working for me. can someone suggest what needs to be done.
I have options as below where I have dateFormat as MM/DD/YYYY which is a requirement for my application and do not show date picker.
this.options.columns = [ { type: ‘date’, dateFormat: ‘MM/DD/YYYY’}]
.htDatepickerHolder {
display:none !important;
}
.pika-single.is-hidden {
display:none !important;
}