I have a basic setup like below for a grid. I just want to have the gradient padded background on the details table that a lot of the samples have in order to improve how the data appears. I believe it has something to do with the nestedview settings, but I'm not sure how to use it with the detailtables view. For instance, it looks like the samples apply a viewwrap css class to the details, but they all use outputted html, while i'm using a gridtableview. I'm not sure how to apply it in my situation.
<telerik:RadGrid ID="DevelopmentGoalGrid" runat="server" ..>
<MasterTableView DataKeyNames="GoalId" DataSourceID="GoalsData" HierarchyDefaultExpanded="true"
TableLayout="Auto" AllowPaging="false">
<DetailTables>
<telerik:GridTableView Name="ActivityDetails" DataKeyNames="ActivityId" Width="100%"
runat="server" AutoGenerateColumns="false" AllowPaging="false" CssClass="viewWrap" nes >
<ParentTableRelation>
<telerik:GridRelationFields DetailKeyField="GoalId" MasterKeyField="GoalId" />
</ParentTableRelation>
<RowIndicatorColumn>
<HeaderStyle Width="20px" />
</RowIndicatorColumn>
<ExpandCollapseColumn>
<HeaderStyle Width="20px" />
</ExpandCollapseColumn>
<Columns>
<telerik:GridButtonColumn Text="Select" ButtonType="LinkButton" CommandName="SelectActivity" />
<telerik:GridBoundColumn HeaderText="Activity" UniqueName="ActivityName" DataField="Name"
SortExpression="Name">
</telerik:GridBoundColumn></Columns>
</telerik:GridTableView>
</DetailTables>
<RowIndicatorColumn>
<HeaderStyle Width="20px"></HeaderStyle>
</RowIndicatorColumn>
<ExpandCollapseColumn Visible="True">
<HeaderStyle Width="20px"></HeaderStyle>
</ExpandCollapseColumn>
<Columns>
</Columns>
</MasterTableView>
<ClientSettings>
<Selecting AllowRowSelect="True" />
</ClientSettings>
</telerik:RadGrid>
