Hiii Guys....Now i will tell you that how can you find Footer text of Radgrid.Just Follow two steps
protected void RadGrid3_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridFooterItem)
{
GridFooterItem ft = (GridFooterItem)e.Item;
string cx = ft["Your Column Unique Name"].Text;
}
}
protected void RadGrid3_ItemDataBound(object sender, GridItemEventArgs e)
{
if (e.Item is GridFooterItem)
{
GridFooterItem ft = (GridFooterItem)e.Item;
string cx = ft["Your Column Unique Name"].Text;
}
}
No comments:
Post a Comment