- Home
- Forum
- JavaScript - EJ 2
- Grid pager control css
Grid pager control css
I would like to be able to change a grid's pager control; background color, highlight color of selected page, buttons used to navigate, etc. I did find some grid control css at this link (), but it does not address the pager.
SIGN IN To post a reply.
3 Replies
PS
Pavithra Subramaniyam
Syncfusion Team
March 18, 2019 04:32 AM UTC
Hi Travis,
Thanks for contacting Syncfusion support.
You can achieve your requirement by adding custom CSS for pager element. Please refer to the below code example, documentation link and sample link for more information.
[style.css]
|
<style>
// pager back ground
.e-grid .e-pager,.e-grid .e-pager .e-pagercontainer,.e-grid .e-pager .e-pagercontainer *{
background-color:lightblue;
}
// current selected page item
.e-grid .e-pager .e-currentitem, .e-pager .e-currentitem:hover{
background-color:blue;
}
</style> |
Please get back to us for further assistance.
Regards,
Pavithra S.
Hi Travis,Thanks for contacting Syncfusion support.You can achieve your requirement by adding custom CSS for pager element. Please refer to the below code example, documentation link and sample link for more information.[style.css]
<style>// pager back ground.e-grid .e-pager,.e-grid .e-pager .e-pagercontainer,.e-grid .e-pager .e-pagercontainer *{background-color:lightblue;}// current selected page item.e-grid .e-pager .e-currentitem, .e-pager .e-currentitem:hover{background-color:blue;}</style>Please get back to us for further assistance.Regards,Pavithra S.
I have the same problem as Travis.
I just tested the code above. It did not work.
I would like to change the button color.
I use the code below:
<ejs-grid[dataSource]='data' [allowPaging]="true" [allowSorting]="true" [pageSettings]="pageSettings">
<e-columns>
<e-column></e-column>
</e-columns>
</ejs-grid>
SS
Seeni Sakthi Kumar Seeni Raj
Syncfusion Team
July 11, 2019 10:16 AM UTC
Hi Amine,
We are unable to reproduce the problem at our end. We have prepared a sample that can be referred from the following link.
If you are facing a problem, please share the complete code example of the Grid along with the typescript definition file for the component file. If any of the CSS used for the customization in the Grid, please send them along.
Regards,
Seeni Sakthi Kumar S.
SIGN IN To post a reply.
- 3 Replies
- 4 Participants
-
TR Travis
- Mar 15, 2019 04:31 PM UTC
- Jul 11, 2019 10:16 AM UTC