I am using FontAwesome icons. It is increasing the other icons but not forward and backward icons. I have included font-awesome.css, fontAwesome4.css, fontAwesome4.js. This is my code:
var $prowed1 = $grid.closest(".ui-jqgrid").find(".ui-pg-table");
$prowed1.find(".ui-pg-button > span.ui-icon-seek-first")
.removeClass("ui-icon ui-icon-seek-first")
.addClass("icon-step-backward");
$prowed1.find(".ui-pg-button > span.ui-icon-seek-prev")
.removeClass("ui-icon ui-icon-seek-prev")
.addClass("icon-backward");
$prowed1.find(".ui-pg-button > span.ui-icon-seek-next")
.removeClass("ui-icon ui-icon-seek-next")
.addClass("icon-forward");
$prowed1.find(".ui-pg-button > span.ui-icon-seek-end")
.removeClass("ui-icon ui-icon-seek-end")
.addClass("icon-step-forward");
.container {
width: 100% !important;
}
.ui-jqgrid .ui-jqgrid-titlebar {
height: 35px !important;
background: #fff;
color: #666;
padding: 10px 2px 1px 2px !important;
}
.ui-jqgrid {
border: 0px solid !important;
}
.ui-jqgrid .ui-jqgrid-hbox {
background: #666;
color: #fff;
}
.ui-jqgrid .ui-jqgrid-htable th {
font-size: 12px;
}
.ui-pg-table .ui-pg-button {
font-size: 150%;
}
Still not working.Rest of the code for grid is same as the how we write it in normal jqgrid .There is only problem with forward and prev icon.