Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
275
Error with "-" character while wrapping
posted

Hello,

While using XamDataGrid control with wrapping for show multiline text, it´s works perfect, unless in the use of "-" case. If the text have a "-", the wrapping cut it at the "-".

For example: "The car is in Villa-leoz, near Valladolid", the control cut the text as this "The car is in Villa".

The xaml:

<igDP:Field Name="Text" Width="500*">
<igDP:Field.Settings>
<igDP:FieldSettings CellValuePresenterStyle="{StaticResource CommentCellValuePresenterStyle}">
<igDP:FieldSettings.EditorStyle>
<Style TargetType="{x:Type igE:XamTextEditor}">
<Setter Property="TextWrapping" Value="Wrap" />
</Style>
</igDP:FieldSettings.EditorStyle>
</igDP:FieldSettings>
</igDP:Field.Settings>
</igDP:Field>