Hi.
I use NetAdvantage 2007.01.1071
The problem with DateTime column (only Windows Vista).
When property Column.Nullable set to Infragistics.Win.UltraWinGrid.Nullable.Disallow and I choose today date from calendar,
say 23/12/2008, application crashes. It appeares, somthing is wrong with default Mask.
Any other date, button 'today', choosing today date in non empty column works fine.
What can I do to solve the problem?
Thanks in advance.
private void ultraGrid1_InitializeLayout(object sender, Infragistics.Win.UltraWinGrid.InitializeLayoutEventArgs e) { e.Layout.Bands[0].Columns["PaymentDate"].Nullable = Infragistics.Win.UltraWinGrid.Nullable.Disallow; }
private void Form1_Load(object sender, EventArgs e) { try { DataTable dt = new DataTable(); DataColumn dc; dc = new DataColumn("PaymentID", Type.GetType("System.Int32")); dt.Columns.Add(dc); dc = new DataColumn("PaymentDate", Type.GetType("System.DateTime")); dt.Columns.Add(dc); DataRow dr = dt.NewRow(); dr["PaymentID"] = 1; dt.Rows.Add(dr);
this.ultraGrid1.DataSource = dt; } catch { } finally { } } }
Mike Saltzman"] Hi, I've never heard of this issue before. What I recommend is that you create a small sample project demonstrating the issue and Submit an incident to Infragistics Developer Support so they can check it out.
Hi,
I've never heard of this issue before. What I recommend is that you create a small sample project demonstrating the issue and Submit an incident to Infragistics Developer Support so they can check it out.
I did it yesterday.
https://es.infragistics.com/membership/mysupport.aspx?CaseNumber=CAS-13512-FA8RVI
Before you do that, you might want to try upgrading to the latest Hot Fix if you do not already have it: My Infragistics Keys and Downloads - Download Anything and Everything You Own
Hello. Any ideas?