BoldSignA modern eSignature application with affordable pricing. Sign up today for unlimited document usage!
Hi Rasika,
Thank you for your interest in Syncfusion products.
We are unable to reproduce the reported query with “changing row value, the table collapsed immediately”. If you don't want to collapse table until '-' sign button is click, we have customize the sample. Please refer to it.
Please let us know if you have any concern.
Regards,
Muthukumar K
Hi Supriya,
Thanks for the update.
We regret to let you know that we could not able to clearly understand your query with “changing row value, the table collapsed immediately”. So that we need some more details regarding your scenario. Please provide us details regarding issue with replication procedure or screenshot. It would be more helpful for us to provide better solution as soon as possible. And If you want to change the multiple rows values in child table alone in gridgroupingcontrol, you can use QueryCellStyleInfo event. Please refer the below code,
Code:
void gridGroupingControl1_QueryCellStyleInfo(object sender, GridTableCellStyleInfoEventArgs e)
{
GridTable tablechild = this.gridGroupingControl1.GetTable("Orders"); // child table
if (tablechild.CurrentRecord != null)
{
if (e.TableCellIdentity.ColIndex == 2 && e.TableCellIdentity.RowIndex > 0)
{
e.Style.CellValue = "text"; // particular column likewise you can add remaining column.
}
e.Handled = true;
}
}
Please let us know if you have any concern.
Regards,
Muthukumar K