BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgse)
{
GridTableCellStyleInfoIdentity id = e.TableCellIdentity asGridTableCellStyleInfoIdentity;
Record record;
if (id.DisplayElement.IsRecord())
{
record = id.DisplayElement.GetRecord();
if (e.TableCellIdentity.ColIndex==4 && id.TableCellType ==GridTableCellType.RecordFieldCell && record!=null && record.GetValue("Column3").Equals("row10col3"))
{
e.Style.CellType = "CheckBox";
e.Style.CellValueType = typeof(bool);
e.Style.CellValue = CheckBoxValue;
e.Style.ReadOnly = false;
e.Style.CellAppearance = GridCellAppearance.Raised;
e.Style.Enabled = true;
}
}
e.Handled = true;
}
Sample : http://www.syncfusion.com/downloads/support/forum/120641/ze/CS886333781
To achieve it, only the following assemblies are required. If you have Essential Studio with WindowsForms platform installed, you can get all these from installed location. “C:\Program Files (x86)\Syncfusion\Essential
Studio\<installed Version>\Assemblies\4.0”.
Please let us know if you have any other concerns.
Thanks & Regards,
AL.Solai.