I'm having problems with row height not auto - sizing with text wrapping on. When I enter a long string, it will wrap to two lines in the row, but it doesn't display the third row. I would like to row height expand to automatically to display all the text.
Below is the grid XAML code I'm using.
<
telerik:RadGridView
Grid.Row
=
"1"
ScrollViewer.HorizontalScrollBarVisibility
=
"Disabled"
ItemsSource
=
"{Binding Path=CustomSqlStatus}"
AutoGenerateColumns
=
"False"
CanUserDeleteRows
=
"False"
CanUserInsertRows
=
"False"
CanUserSelect
=
"False"
UseLayoutRounding
=
"True"
CanUserFreezeColumns
=
"False"
CanUserReorderColumns
=
"False"
CanUserSortColumns
=
"False"
Padding
=
"2"
ShowGroupPanel
=
"False"
IsFilteringAllowed
=
"False"
CanUserSortGroups
=
"False"
RowIndicatorVisibility
=
"Hidden"
MaxColumnWidth
=
"400"
>
<
telerik:RadGridView.Columns
>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Path=SqlCommandName}"
Header
=
"Command Name"
HeaderCellStyle
=
"{StaticResource BoldFont}"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Path=Comments}"
Header
=
"Comment"
HeaderCellStyle
=
"{StaticResource BoldFont}"
TextWrapping
=
"Wrap"
/>
<
telerik:GridViewDataColumn
DataMemberBinding
=
"{Binding Path=SQL}"
Header
=
"Sql"
HeaderCellStyle
=
"{StaticResource BoldFont}"
TextWrapping
=
"Wrap"
/>
</
telerik:RadGridView.Columns
>
</
telerik:RadGridView
>