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
445
TextWrapping is not working when IsExpandable=True
posted

Hi,

Below is my xaml for a field.  The text wrapping works fine when the IsExpandable = False, it does not work when IsExpandable = True.

 

Any ideas as to what I may be missing?

 

<igDP:Field Name="Message" Width="100" IsExpandable="True" >

<igDP:Field.Settings>

<igDP:FieldSettings AllowEdit="False">

<igDP:FieldSettings.EditorStyle>                                      

<Style TargetType="{x:Type igEditors:XamTextEditor}">

<Setter Property="TextWrapping" Value="Wrap" />

</igDP:FieldSettings.EditorStyle>

</igDP:FieldSettings>

</igDP:Field.Settings>          

</igDP:Field>