We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GridListControl

All, Is it posible to change Column Style to "CheckBox" in GridListControl ? glc1.Grid.ColStyles[0].CellType="CheckBox"; does not do the job thanks

1 Reply

AD Administrator Syncfusion Team November 3, 2004 03:59 PM UTC

The embedded Grid in teh GridListControl is a virtual grid. To affect a style change like this, you would have to handle the Grid.QueryCellInfo event and set it there. (Note column 0 is the row header which is hidden, so you would need to use 1 or higher).
private void Grid_QueryCellInfo(object sender, GridQueryCellInfoEventArgs e)
{
	if(e.RowIndex > 0 && e.ColIndex == 1)
	{
		e.Style.CellType = "CheckBox";
	}
}

Loader.
Live Chat Icon For mobile
Up arrow icon