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
150
Extra Letters being appended to the beginning of blank lines in xamDataGrid TextField
posted

I am currently experiencing strange behavior while using the TextField in the XamDataGrid for WPF.  On a multi-line text field, each blank line is automatically adding the first letter of the next non-blank line to each blank line.

So, text that should look like this:

Foo

(blank line)

(blank line)

Bar

Instead looks like this:

Foo

B

B

Bar

But the phantom "B"s are not being saved to the database.  They only appear when the textbox is not selected.  While selected, the letters do not appear.

Is this a known issue?  Here is the code for the text field:

<igDP:TextField Name="TextValue" Label="Text" Width="450"

TextWrapping="Wrap"

AcceptsReturn="True"

AcceptsTab="True">

<igDP:Field.Settings>

<igDP:FieldSettings DataItemUpdateTrigger="OnCellValueChange"/>

</igDP:Field.Settings>

</igDP:TextField>