Datagrid 2 loading type property

0
Hello Everyone,   I want to change the color of the spinner (loading indicator) used in DataGrid 2. Is it possible to do this using only CSS? If yes, could you please suggest the appropriate class or selector I should target to apply the style?
asked
1 answers
6

Hello Neha, 

First check which class is applying on spinner, try to inspect page and get the class name. 

Then you can chane the required color there. 

Similar like below. 

.mx-datagrid2-loader .mx-spinner

{  border-color: #3498db !important;

}

answered