I have a Jqgrid with rounded border (top and bottom) I achieved this by editiong the css file like this :
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
border-top-left-radius: 7px;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
border-top-right-radius: 7px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
border-bottom-left-radius: 7px;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
border-bottom-right-radius: 7px;
}
But if I enable the top pager I'm not able to get the top corners rounded (see picture).
My questions :
Thanks
Does this do it:
.ui-jqgrid-toppager {
border-top-left-radius: 7px;
border-top-right-radius: 7px;
}
If not, try for .ui-jqgrid .ui-jqgrid-toppager
, but the above worked for me.