I'm creating a form of RadControls Winforms Application to perform a simple people registration.
In this form I am using Telerik Rad Controls
To use the checkbox for each item in the list I used the GridViewCheckBoxColumn
This is my code for loading Grid
private void Carrega_Lista()
{
GridPessoas.DataSource = Negocio.Pessoa.ConsultarPessoa();
GridPessoas.EnableFiltering = true;
GridPessoas.MasterTemplate.ShowFilteringRow = true;
GridPessoas.AddSelectCheckBoxColumn();
}
But when you add GridPessoas.AddSelectCheckBoxColumn();
A blank column is being generated, see the figure below:
Does anyone know how I can fix this?