Hi,
We've replaced our earlier use of child grids with a simplified RowDetails, something that looks like this:
<telerik:RadGridView.RowDetailsTemplate> |
<DataTemplate> |
<Grid> |
<Grid.ColumnDefinitions> |
<ColumnDefinition Width="80" /> <!-- A kind of margin we're using --> |
<ColumnDefinition Width="*" /> |
</Grid.ColumnDefinitions> |
<!-- Here there is a component that appears in column 0 --> |
<!-- The actual description --> |
<TextBlock |
Grid.Column="1" |
Text="{Binding Description, Mode=OneWay}" |
TextWrapping="Wrap"/> |
</Grid> |
</DataTemplate> |
</telerik:RadGridView.RowDetailsTemplate> |
When viewing this, the TextBlock fails to wrap the text.
Based on our understanding, this is because the owning Grid is taking more than the visible width. However, it's possible there's a mistake here.
Can you help us understand why the TextBlock is not wrapping?
Thanks,
yonadav