How to remove date picker on Data Grid search field?

0
In a page with a data grid, one of the searched fields is the created date. However, I want it to only have the text box, and hide the date picker.    Using inspect I was already able to hide the date picker, however I'm not sure how to do it in Studio Pro. Have also been trying to do something in the theme folder, but without success.     Thanks in advance.
asked
1 answers
6

Hey Vasco!

Maybe you can try to add some CSS to hide that button.

Can you try to add this to your main.scss file:

.mx-grid-search-item{
    .mx-grid-search-input {
        .mx-compound-control{
            button{
                visibility: hidden;
            }
        }
    }

}

 

Hope this helps you. If you have any other doubt please let me know

Kind regards.

answered