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 am developing an application using the batabound grid. How can I make a single cell in a column a combobox? The issue is that the entries in my "Value" column represent different types of data. Some of them need to be picked from a list.
Any ideas? Any help would be greatly appreciated since this thing is due this week.
ADAdministrator Syncfusion Team March 17, 2004 07:32 PM UTC
Try handling the QueryCellInfo event. (It is a member of grid.Model). In the handler, if e.ColIndex and e.RowIndex point to your cell, then set e.Style.DataSource, e.Style.DisplayMember, e.Style.ValueMember and e.Style.CellType to reflect the combobox you want to see in that single cell.