GridGrouping Control

Hi,

I have a GCC in that I have grouped two tables.
When I changed values in one table row, the values related to that changes is not applied to other columns in the row. But When i click on next row or someother in the grid, the values getting changed in the mentioned row.

Please tell me how to get the values from two tables and calculate the total.

Thanks,
Prabha..


1 Reply

LS Lingaraj S Syncfusion Team April 7, 2009 06:30 PM UTC

Hi Prabakran,

Thank you for your interest in Syncfusion product.

The gridgroupingcontrol when you move to the the next record, the records are updated. If you want to update the record in current cell lost focus use the RecordValueChanged event to update the GridGroupingControl.

Please refer the code below:

this.gridGroupingControl1.Table.RecordValueChanged+=new RecordValueChangedEventHandler(Table_RecordValueChanged);
void Table_RecordValueChanged(object sender, RecordValueChangedEventArgs e)
{
gridGroupingControl1.Table.EndEdit();
}


Please let me know if this helps.

Regards,
Lingaraj S


Loader.
Up arrow icon