This question is locked. New answers and comments are not allowed.
Hello,
I apply WordEllipsis TextTrimming when the contents of a GridViewDataColumn can potentially exceed the column width. Such a column usually has a width of 250 or 350, which is set in the XAML. But when I run my application, I notice that the ellipsis is not shown when I make the column smaller then the width in the XAML. (by dragging the column border).
The issue occurs when I set the EnableColumnVirtualization property to false, like in the following code snippet (I used one of your sample projects):
Any ideas?
Thanks
Sodi
PS: I tried to reply on the forum post about the same issue. The title of the forum post is: WordEllipsis TextTrimming not visible when column width is changed. But for some reason, an error webpage is displayed when I try to post my answer. The message on the error page is: Oops...Its seems there was a problem with our server.
I apply WordEllipsis TextTrimming when the contents of a GridViewDataColumn can potentially exceed the column width. Such a column usually has a width of 250 or 350, which is set in the XAML. But when I run my application, I notice that the ellipsis is not shown when I make the column smaller then the width in the XAML. (by dragging the column border).
The issue occurs when I set the EnableColumnVirtualization property to false, like in the following code snippet (I used one of your sample projects):
<Grid x:Name="LayoutRoot" Background="White"> <telerik:RadGridView x:Name="gridView" EnableColumnVirtualization="False"> <telerik:RadGridView.Columns> <telerik:GridViewDataColumn TextTrimming="WordEllipsis" Header="First Name" Width="60" DataMemberBinding="{Binding FirstName}"/> <telerik:GridViewDataColumn Header="Last Name" DataMemberBinding="{Binding LastName}"/> <telerik:GridViewDataColumn Header="Married" DataMemberBinding="{Binding Married}"/> <telerik:GridViewDataColumn Header="Age" DataMemberBinding="{Binding Age}"/> </telerik:RadGridView.Columns> </telerik:RadGridView> </Grid>Any ideas?
Thanks
Sodi
PS: I tried to reply on the forum post about the same issue. The title of the forum post is: WordEllipsis TextTrimming not visible when column width is changed. But for some reason, an error webpage is displayed when I try to post my answer. The message on the error page is: Oops...Its seems there was a problem with our server.