Hi Clovis,
Thanks for contacting syncfusion supports.
We have achieved your requirement by using ‘.e-toolbar’ selector class of Grid. Please find the code example
[style code]
<style>
/*to customize toolbar background color for first grid in view*/
#grid .e-toolbar{
background-color:lightgreen;
}
/*to customize toolbar background color for second grid in view*/
#grid1 .e-toolbar{
background-color:lightblue;
}
/*to customize toolbar background color for third grid in view*/
#grid2 .e-toolbar{
background-color:lightgray;
}
</style>
|
In above code example we have changed the toolbar background color in three grids in view.
Regards,
Ramdhas U.