Hello,
I am trying to set up a rad grid to render two table rows for each data item. This is because of the way the data needs to be displayed, an approximation of which is below:
____________________________________________________
|____Field1_____|_______Field2______|_______Field3_______|
|____________Field4 (Long Text Field)_____________________|
So far, the only way I have found to do this is by using the "NestedViewTemplate" property of the MasterTableView. So my first question is, is there a better way of doing this, or is the "NestedViewTemplate" my only option?
Secondly, if the "NestedViewTemplate" is the only way to do it, then how do I remove the automatically generated column which has the button to expand the nested view template? I will be using "HierarchyDefaultExpanded" property of the MasterTableView to make sure the nested view is always displayed, but I don't want users to be able to hide it. Obviously, the buttons could be hidden using CSS, but that still leaves the column generated for them, and no specific CSS classes appear to be applied to it so I cannot use CSS to hide the column (also cannot use CSS selectors (i.e. GridRow>td:first-child) for reasons beyond the scope of this question).
Any help much appreciated,
Andrew