I have a radgrid which each row has a detail grid.
I am making the grid programmatically.
I have these set :
RadGrid1.AutoGenerateHierarchy = True
RadGrid1.MasterTableView.AutoGenerateColumns = True
With the above setting I can remove columns from master table using,
However, I cannot find a way to do this (or something similar) for the Hierarchy created tables.
Any Suggestions?
I am making the grid programmatically.
I have these set :
RadGrid1.AutoGenerateHierarchy = True
RadGrid1.MasterTableView.AutoGenerateColumns = True
With the above setting I can remove columns from master table using,
Protected Sub RadGrid1_PreRender(sender As Object, e As EventArgs) RadGrid1.MasterTableView.GetColumn("ID").Visible = FalseEnd SubHowever, I cannot find a way to do this (or something similar) for the Hierarchy created tables.
Any Suggestions?