Thread ID: |
Created: |
Updated: |
Platform: |
Replies: |
146073 | Jul 18,2019 04:25 PM UTC | Jul 22,2019 06:37 AM UTC | WinForms | 3 |
![]() |
Tags: MultiColumnComboBox |
private void Grid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
//To set the merge cell for each cell.
e.Style.MergeCell = GridMergeCellDirection.ColumnsInRow;
if (e.ColIndex == 1 && e.RowIndex > 1)
{
//To change the cell type as CheckBox
e.Style.CheckBoxOptions = new GridCheckBoxCellInfo("true", "false", "", true);
e.Style.CellType = GridCellTypeName.CheckBox;
}
} |
This post will be permanently deleted. Are you sure you want to continue?
Sorry, An error occured while processing your request. Please try again later.
This page will automatically be redirected to the sign-in page in 10 seconds.