Hi. I have a problem.
I have a DataTable ;
DataTable IsChecked column datatype is string(DB type is varchar. I use oracle db) and Data is Y OR N
I want show this data in RadGridview with checkbox column .
I coded below. but ToggleStateConverter any method not call.
Wha's wrong? Help me.
I buy DevCraft Complete product. I want your reply 24 h response.
(User defined class and attach Attribute Sample is well work.)
ex)
this.radGridView1.AutoGenerateColumns = true;
I have a DataTable ;
DataTable IsChecked column datatype is string(DB type is varchar. I use oracle db) and Data is Y OR N
I want show this data in RadGridview with checkbox column .
I coded below. but ToggleStateConverter any method not call.
Wha's wrong? Help me.
I buy DevCraft Complete product. I want your reply 24 h response.
(User defined class and attach Attribute Sample is well work.)
ex)
this.radGridView1.AutoGenerateColumns = true;
this.radGridView1.DataSource = dsResult.Tables[0];
var checkBoxColumn = new GridViewCheckBoxColumn();
checkBoxColumn.HeaderText = " IsChecked ";
checkBoxColumn.Name = " IsChecked ";
checkBoxColumn.Width = 100;
checkBoxColumn.IsVisible = true;
checkBoxColumn.DataType = typeof(string);
checkBoxColumn.DataTypeConverter = new ToggleStateConverter();
this.rndGridView1.Columns[0] = checkBoxColumn;