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.
Here i am trying to set grid control column as a Combo box like this Cell Type =Combo box, but its acting as that particular individual cell Act as Combo box but not all the Columns
AGAnish George Syncfusion Team May 12, 2014 08:38 AM UTC
Hi Venkaiah,
Thank you for your interest in Syncfusion products.
Query:
Assign Combobox for
a whole column
We suggest you to use the QueryCellStyleInfo event for
achieving this scenario. QueryCellInfois the
workhorse event. It is used to provide theGridStyleInfo object for a given cell. In your
handler for this event, you would normally set theCellValue or CellTypefor the GridStyleInfo object passed
in with the event arguments.
Please refer the below code snippet.
C#:
this.gridControl1.QueryCellInfo += new
GridQueryCellInfoEventHandler(gridControl1_QueryCellInfo);