Hi,
i try radgrid custom header text. My code like this in Radgrid ItemCreated
Dim HeaderItem As GridHeaderItem = CType(e.Item, GridHeaderItem)
Dim Button As LinkButton = CType(HeaderItem("ListOrder").Controls(0), LinkButton)
Button.Text = "Custom Header"
It is ok first use. But after sorting or change page then custom header get default values, not my custom header text. I use also RadGrid PreRender for default filter.
I try to use custom header in Rad Grid Prerender like this;
GvwItems.Columns.FindByUniqueName("ListOrder").HeaderText = "Custom Header"
But I also user hierarchy table, so in prerender, my hierarchy tables columns header do not change like this. Ony master table column header change using methoıd in prerender.