Hello,
Update: Solved it with css.
I have a TelerikGrid like:
<TelerikGrid Data="@MainViewModels">
<DetailTemplate>
var details = context as DetailViewModel;
<TelerikGrid Data="details.Details">
<GridColumns>
<Grid Column Field="Title" />
</GridColumns>
</TelerikGrid>
</DetailTemplate>
<GridColumns>
<GridColumn Field="Field1" />
<GridColumn Field="Field2" />
<GridColumn Field="Field3" />
</GridColumns>
</TelerikGrid>
4 columns are generated: one <td class="k-hieracrchy-cell" role="gridcell"> and three <td class=" " role="gridcell"> columns.
But in <tr class="k-detail-row"> -> <td class="k-detail-cell"> there is colspan="3" instead of 4. So the details do not have the full width of the table.
How do I set the colspan to 4 or expand the detail table to the full width of the parent table?
Thanks