AD
Administrator
Syncfusion Team
February 2, 2007 07:43 PM UTC
Hi DKP,
You can try catching the CurrentRecordContextChanged event and set the initial values there.
private void gridGroupingControl1_CurrentRecordContextChange(object sender, CurrentRecordContextChangeEventArgs e)
{
if(e.Record is GridAddNewRecord
&& e.Action == CurrentRecordAction.EndEditCalled )
Console.WriteLine(e.Record.ToString());
}
Best regards,
Haneef