RC
Rajadurai C
Syncfusion Team
July 23, 2009 01:32 PM UTC
Hi Stephane,
Thanks for your interest in Syncfusion Products.
1) If you would like to commit the change made in record to the binded object on leaving the cell to other cell in the same record by tab or enter key, CurrentRecordContextChange event can be handled with the following code.
this.gridGroupingControl1.CurrentRecordContextChange += new Syncfusion.Grouping.CurrentRecordContextChangeEventHandler(gridGroupingControl1_CurrentRecordContextChange);
void gridGroupingControl1_CurrentRecordContextChange(object sender, Syncfusion.Grouping.CurrentRecordContextChangeEventArgs e)
{
if (e.Action == Syncfusion.Grouping.CurrentRecordAction.CurrentFieldChanged)
{
e.Table.CurrentRecord.EndEdit();
}
}
2) By default, gridgroupingcontrol supports pasting of multiple columns copied from excel sheet.
Regards,
Rajadurai