The Syncfusion native Blazor components library offers 70+ UI and Data Viz web controls that are responsive and lightweight for building modern web apps.
.NET PDF framework is a high-performance and comprehensive library used to create, read, merge, split, secure, edit, view, and review PDF files in C#/VB.NET.
I'm going nuts here:
I have a databound grid with two columns with style info set:
this.gridBoundColumn2.StyleInfo.CellType = "Currency";
this.gridBoundColumn2.StyleInfo.CellValueType = typeof(System.Double);
this.gridBoundColumn2.StyleInfo.Format = "C";
With this setting, and the data tied to an Access Database Table, with Double format....
Anytime I enter a decimal amount, like 1.50, into the grid control, I get "Input String was not in correct format" when I move to a diff cell.
If I enter a whole number, all is fine. I've also tried setting CellType = "TextBox", instead of Currency, and get the exact same effect.
I'm going nuts here...any ideas?
ADAdministrator Syncfusion Team October 30, 2003 09:33 PM UTC
What regional settings do you have set? Have you tried entering 1,50 to see if this works?
ERERobishawOctober 30, 2003 09:53 PM UTC
Found the problem... the message was actually being generated by something I was doing in CurrentCellAcceptedChanges, but thought it was coming from the grid itself.
My bad.
Thanks.