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 using a combobox as a cell editor within the grid and having problems in obtaining the underlying object when a user changes the cell value using a combobox. The combobox datasource is a list containing custom objects. I am usingthe renderer property to obtain the CellValue, which is text and not the object I expected. Does anyone know how to obtain the selected object?
ADAdministrator Syncfusion Team March 23, 2004 02:43 AM
Your incident (both of them) has been responded to through DirectTrac. You used two different email addresses which is why you could not see the earlier response. I am not sure you will see the latter response either as the email address you used for that incident did not have an ''s'' at the end. I don''t know whether it needs one of not. There is a sample attached to that response.
The problem is that you are setting style.ValueMember = "Name". This is why you are getting a string (along with the fact you set style.CellValueType = typeof(string)). If you set the CellValueType to be your object, and you set the ValueMember = "", then I think you will get what you want.