GGC current cell column name

Is there a way one I have ref to the current cell to get the name of the column it falls under or the name of the property it was bound to? When validating I need to know more than just the data type I need to know the column name. Also, FYI I have hierchical data.

2 Replies

AD Administrator Syncfusion Team August 16, 2005 07:41 PM UTC

Here is code to get the column in TableControlCurrentCellValidating.
private void gridGroupingControl1_TableControlCurrentCellValidating(object sender, GridTableControlCancelEventArgs e)
{
	GridCurrentCell cc = e.TableControl.CurrentCell;
	GridTableCellStyleInfo style = e.TableControl.Table.GetTableCellStyle(cc.RowIndex, cc.ColIndex);
	GridColumnDescriptor cd = style.TableCellIdentity.Column;
	if(cd != null)
	{
        // cd is the columndescriptor
		Console.WriteLine(cd.Name);
	}
}


BC Brian Corley August 17, 2005 11:51 AM UTC

Got it

Loader.
Up arrow icon