or
protected
void
AssetGrid_OnItemEvent(
object
sender, GridItemEventArgs e)
{
if
(e.EventInfo
is
GridInitializePagerItem)
{
var showAllLabel =
new
Label {Text =
"Show All"
};
var showAllCheckBox =
new
CheckBox();
(e.Item
as
GridPagerItem).PagerContentCell.Controls.Add(showAllLabel);
(e.Item
as
GridPagerItem).PagerContentCell.Controls.Add(showAllCheckBox);
}
}