Align search field datagrid

0
Hi, Is it possible to align a search field of a datagrid to the right handside, so it will be closer to the search button? Regards,   Peter
asked
1 answers
3

Hi Peter,

You can achieve this styling by adding custom styles in your custom.css file

For example :

  1. Add the following style in your application custom.css file

                                 .mx-grid-custom .mx-grid-searchbar .mx-grid-search-inputs{
                                            text-align:right;
                                  }

       2. Add the class name mx-grid-custom in your data grid properties 

Hope this will do the needful, Thanks!

answered