I am developing MVC3 website and using mvc3 webgrid control in it.
The problem which I encounter is to hide the > and < links for Previous and Next page of pagination when the page size is 5 or less otherwise it displays Normally.
@{
var grid = new WebGrid(source: Model, defaultSort: "FirstName", rowsPerPage: 5,
canPage:true, canSort: true);
}
@grid.GetHtml(tableStyle: "grid", headerStyle: "table-heading",
footerStyle: "pager",
alternatingRowStyle: "gird-second-row",
selectedRowStyle: "gird-first-row",
rowStyle: "gird-first-row", columns: new[] {
grid.Column("Title", header: "FirstName")
})
Any help?