BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
if(e.TableCellIdentity.TableCellType == GridTableCellType.GroupCaptionCell)
{
e.Style.CellType = "Static";
e.Style.BackColor = Color.White;
}
}
>private void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
>{
> if(e.TableCellIdentity.TableCellType == GridTableCellType.GroupCaptionCell)
> {
> e.Style.CellType = "Static";
> e.Style.BackColor = Color.White;
> }
>}
>
great, but need to edit groupcaptioncell, and get/set its value from ''Referencias'' column
( i see that TextBox inherits from Static, maybe i can state it behaves like a standard column ?¿)
thanks in advance