Hi Antonio,
Please try the following code snippet to set the HeaderText of a detail table.
C#:
protected
void
RadGrid1_ItemCreated(
object
sender, GridItemEventArgs e)
{
if
((e.Item
is
GridHeaderItem) && (e.Item.OwnerTableView.Name ==
"UOMDetailTable"
))
{
GridHeaderItem headerItem = e.Item
as
GridHeaderItem;
LinkButton button = headerItem[
"SortOrder"
].Controls[0]
as
LinkButton;
button.Text =
"New HeaderText"
;
}
}
Thanks,
Princy