BoldSignEasily embed eSignatures in your .NET applications. Free sandbox with native SDK available.
private void gridGroupingControl1_TableControlCurrentCellShowingDropDown(object sender, GridTableControlCurrentCellShowingDropDownEventArgs e) { GridCurrentCell cc = e.TableControl.CurrentCell; GridTableCellStyleInfo style = e.TableControl.Model[cc.RowIndex, cc.ColIndex]; GridRecord rec = style.TableCellIdentity.DisplayElement as GridRecord; if(rec != null) { rec.SetValue("theColumnName") = ""; } }
>private void gridGroupingControl1_TableControlCurrentCellShowingDropDown(object sender, GridTableControlCurrentCellShowingDropDownEventArgs e) >{ > GridCurrentCell cc = e.TableControl.CurrentCell; > GridTableCellStyleInfo style = e.TableControl.Model[cc.RowIndex, cc.ColIndex]; > GridRecord rec = style.TableCellIdentity.DisplayElement as GridRecord; > if(rec != null) > { > rec.SetValue("theColumnName") = ""; > } >} >
>private void gridGroupingControl1_TableControlCurrentCellShowingDropDown(object sender, GridTableControlCurrentCellShowingDropDownEventArgs e) >{ > GridCurrentCell cc = e.TableControl.CurrentCell; > GridTableCellStyleInfo style = e.TableControl.Model[cc.RowIndex, cc.ColIndex]; > GridRecord rec = style.TableCellIdentity.DisplayElement as GridRecord; > if(rec != null) > { > rec.SetValue("theColumnName") = ""; > } >} >