I'm working with an existing database which has a field type of Int64 (bigint in SQL 2005). When I try to display this value in the data grid I get some meaningless (to me anyway) value.
I've submitted this to Infragistics already and was given an incident number of XDG543 but was hoping perhaps the community can help me with a workaround.
Attached is a very simple piece of code which demonstrates the issue.
Thanks in adavnce!
Hi Corey,
This is a bug in the numeric editor control. We've entered it into our bug tracking system and will soon be fixed. It only happens for Int64 data types.
In the meantime, use the following workaround. It sets the correct mask on all Int64 fields.
{
style.Seal( );
field.Settings.EditorStyle = style;
}
Hope this helps,
Sandip