rockerchain
rockerchain

Reputation: 29

How to change pager jqgrid font size?

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

Answers (1)

Runcorn
Runcorn

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;
}

See the working example here

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>",

See the working example here

Hope this is what you want.

Upvotes: 2

Related Questions