How to Change GridGroupHeaderItem Font Size?
am using This Way ..
protected void rgMyFile_ItemCreated(object sender, GridItemEventArgs e)
{
if (e.Item is GridGroupHeaderItem)
{
(e.Item as GridGroupHeaderItem).Font.Size = FontUnit.Point(30);
(e.Item as GridGroupHeaderItem).Font.Bold = true;
}
}
but its Not Working
protected void rgMyFile_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridGroupHeaderItem)
{
GridGroupHeaderItem item = e.Item as GridGroupHeaderItem;
e.Item.Font.Size = FontUnit.Point(430);
e.Item.Font.Bold = true;
e.Item.CssClass = "bold";
}
}
using This way also not Working.
give me any solution
am using This Way ..
protected void rgMyFile_ItemCreated(object sender, GridItemEventArgs e)
{
if (e.Item is GridGroupHeaderItem)
{
(e.Item as GridGroupHeaderItem).Font.Size = FontUnit.Point(30);
(e.Item as GridGroupHeaderItem).Font.Bold = true;
}
}
but its Not Working
protected void rgMyFile_ItemDataBound(object sender, Telerik.Web.UI.GridItemEventArgs e)
{
if (e.Item is GridGroupHeaderItem)
{
GridGroupHeaderItem item = e.Item as GridGroupHeaderItem;
e.Item.Font.Size = FontUnit.Point(430);
e.Item.Font.Bold = true;
e.Item.CssClass = "bold";
}
}
using This way also not Working.
give me any solution