How to remove search and reset button from datagrid search

0
Hi Team, We have move the pagination feature of datagrid to left side of the page but the search and reset button are over riding over a search field. So, want to remove both buttons tried visibility : hidden, but it hides visibility for all buttons  How can I achieve the below functionality     Thanks In Advance
asked
2 answers
1

There is no setting in Mendix Studio Pro to do that, so your only option (possibly) is to modify the styling client-side. Inspect button Search and button Reset.

In theme\styles\web\sass\app\_customs.scss add an entry

.mx-grid-search-controls {
    display: none;
}

That might hide the search and reset.

answered
0

There is another way to achieve that. See this post: https://forum.mendix.com/link/space/widgets/questions/101709 

answered