I have my grid with star sized columns, and I need word wrapping on. However, if the columns are star sized, the wrapped text does not automatically expand the row's height to display all of the text. In the picture I have attached, the text in the second and fourth rows are supposed to say "Personal Representative", but the row's height is not expanded to show the text. If I put a hard-coded number for the column width, then the row expands its height to accomodate the text's wrap. Is there a way to have star-sized columns and word wrap?
After doing some digging I found that I had to remove the reference to Infragistics.Silverlight.v9.1 and Infragistics.Silverlight.XamWebGrid.v9.1 and add them back in. The service release updated any new references to the infragistics assemblies but any projects that still had reference to the older assembly require deleting and re-adding the reference.
Can you post the xaml, so that i can test it out.
-SteveZ
I have a problem similar to this.
I use TemplateColumn and it contains a StackPanel control which in turn contains TextBlock. It has TextWrapping="Wrap" but only wraps text when I click cell.
Hi,
Yes, you need to make sure you have TextWrapping on. If you're using a TextColumn, you can just set the TextWrapping property to wrap, otherwise, if you're using a TextBlock on a TemplateColumn, you can set the property directly on the TextBlock:
<ig:TextColumn Key="Name" Width="200"/>
<ig:TextColumn Key="Tooltip" TextWrapping="Wrap" Width="*"/>
Yeap just installed it last friday and still having same issue. Is there something I have to do after installing the update?