Hi ,there
How can i get row's check state ? Here is how i add the checkbox column to the gridview and how try to get checkstate. Thank you for ur interest
GridViewCheckBoxColumn checkBoxColumn = newGridViewCheckBoxColumn();checkBoxColumn.DataType = bool;checkBoxColumn.Name = "Ekle";checkBoxColumn.FieldName = "Ekle";checkBoxColumn.HeaderText = "Ekle";grdSorular.Columns.Add(checkBoxColumn);
privatevoidgrdSorular_ValueChanged(objectsender, EventArgs e) { if(grdSorular.ActiveEditor isRadCheckBoxEditor) { var rowindex = grdSorular.CurrentCell.RowIndex; boolvalue = false; if(grdSorular.Rows[rowindex].Cells["Ekle"].Value != null) { value = (bool)grdSorular.Rows[rowindex].Cells["Ekle"].Value; MessageBox.Show(value.ToString()); } } }








