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.
Dear Clay
I am working on grid databound grid using syncfusion.The grid has a hidden column with float(double) values.I have written code for adding a new row. The problem is that on adding new row and trying to save it , an exception "object must be MyObject type" is thrown.I am hard-coding a value in the query I make for filling the grid ,like this:
select accessmode,63.000000000000 as accessmode from accesspermission;
Here,accessmode is the actual column in the database and the second hardcoded value is the hidden column i was talking about.Could you please help me on this .It is critical to the project.
Thanx
ADAdministrator Syncfusion Team October 4, 2004 04:43 AM UTC
Is the DataColumn in your DataTable set to MyObject?
Is the GridBoundColumn.StyleInfo.CellValueType set to MyObject?
The error suggests to me that at least one of these properties has been set to MyObect, and the value you are setting is not actually a MyObject object. If you want to use a MyObject value in the cell, then both these properties should be set to MyObject, and the value you actually put into the cell should also be a MyObject.
If you can post a sample project showing the problem, maybe we can spot the actual problem.