Reputation: 73
So is that possible? I know you can add a footer template for specific column, but can you add a control int the footer next to the paging ?
Upvotes: 0
Views: 1211
Reputation: 34844
Yes, you need to check in the Row_Created
event for a row of type Pager
, like this:
private void grdClientServiceType_RowCreated(object sender, System.Web.UI.WebControls.GridViewRowEventArgs e)
{
if(e.Row.RowType == DataControlRowType.Pager)
{
// Create your control here, button is an example create whatever you want
Button theButton = new Button();
theButton.Text = "Click Me";
// Add new control to the row with the pager via a table cell
e.Row.Cells[0].ColumnSpan -= 1;
TableCell td = new TableCell();
td.Controls.Add(theButton);
e.Row.Cells.Add(td);
}
}
Upvotes: 2