Reputation: 29
I want to change the font which displays the number of records in the table. (View 1 - 10 of 13)--> that font specifically
Upvotes: 1
Views: 1286
Reputation: 5224
If you want to change the CSS of whole text View 1 - 10 of 13
you should override jqGrid default CSS with your own ,
.ui-paging-info{
font-size: 20px;
}
But , If you only want to change the CSS of numbers only 13
then you should add a jqGrid property for specifying the view record format using ,
recordtext: "View {0} - {1} of <span style=' font-size: 20px;'>{2}</span>",
Hope this is what you want.
Upvotes: 2