I'm using version 2008.1.619.35 of the Asp.NET Ajax grid. I'm trying to figure if there is a way to indent the child from the master grid. I'm using the Sunset theme within my master grid. Right now the child grid will not go beyond the borders of the master grid.
You
can set the CssClass property of the child table to a CssClass with a
margin-left Css selector set (you can also use the !important keyword
to make sure the style is applied).
If I understand you correctly, you want the right edge of the detail tableviews to end beyond the right edge of the master table. If this is the case, then please use
.RadGrid .DetailTable_Sunset
{
position:relative;
left:30px;
}
.DetailTable_Sunset
{
background:#f4ede1;
}
Kind regards,
Dimo
the Telerik team
Check out Telerik Trainer, the state of the art learning tool for Telerik products.