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
735
[Issue]TextWrapping on xamDataGrid
posted

Hi,

We've a problem that a few PC can't showing the value completely when textwarpping is opened. They have same string which is "out of Range." If they changed the width of field to wider, the string "Range" still can't showing. But can showing the string "Range" if  narrowing the width of field.

 I did some tests for their PC like following:

  • Set textwarpping is noWrap:  The value will showing correctly.
  • Change the string "out of Range" to "out of range": The value will showing correctly too. 
Can you someone give some ideas about this? 
Xaml:

<!--

<igDP:Field Name="Description" Label="{x:Static resourceRepository:Resources.RMC_Model_WarningResultItem_Description}">
<igDP:Field.Settings>
<igDP:FieldSettings>
<igDP:FieldSettings.EditorStyle>
<Style TargetType="{x:Type igEditors:XamTextEditor}">
<Setter Property="IsReadOnly" Value="True" />
<Setter Property="TextWrapping" Value="NoWrap"/>
</Style>
</igDP:FieldSettings.EditorStyle>
</igDP:FieldSettings>
</igDP:Field.Settings>
</igDP:Field>

-->

Thanks,