Hi,
I have a grid which contains a xamtexteditor in one of the cells. I'm having a problem where blanking the cell results in an error message: Conversion from type DBNull to String is not possible. The cell is databound to an object's property which is of type String. In WinForms, I could specify that blanking the editor would push an empty string into the bound field. I can't find the equivolent here. I assume this is still possible.. what am I missing?
Thanks
Andy
I'll go the converter route... that seems to be the "Wpf Way" of doing things. Might be nice to have such a converted included with the controls though.
You may need to set the Converter property of the Field to your own IValueConverter that will convert the DBNull to an empty string. You should submit a suggestion for adding a NullValue or Nullable property.