We use cookies to give you the best experience on our website. If you continue to browse, then you agree to our privacy policy and cookie policy. Image for the cookie policy date
close icon

GGC Row to be scroll

Hi
I am using GGC version 3.2.1 on XP , I need to change the row height and make it as scroll , I did changed the row height as follows but I am unable to make it scroll, could you please advise me ????
Thanks a lot
Sivaiah

private void mmpGrid_RecordExpanded(object sender, Syncfusion.Grouping.RecordEventArgs e)
{
if(e.Record.GetValue("ButtonColumn")!=null )
{
e.Record.SetValue("ButtonColumn",1);
}

if(e.Record.ParentTableDescriptor.IsChildOf(parentTD))
{
GridChildTable ct = e.Record.NestedTables[0].ChildTable as GridChildTable;

// switch mode for TableModel
ChildTable savedFilteredChildTable = ct.ParentTable.FilteredChildTable;
try
{
ct.ParentTable.FilteredChildTable = ct;
GridTableModel tm = ct.ParentTable.TableModel;
ct.ParentTable.TableModel.RowHeights[tm.RowCount]=40 ;
ct.ParentTable.FilteredChildTable = ct;
}
finally
{
ct.ParentTable.FilteredChildTable = savedFilteredChildTable;
}
}


e.Cancel =true;

}


scroll row.zip

3 Replies

AD Administrator Syncfusion Team August 16, 2006 10:07 AM UTC

Hi Sivaah,

Please refer to our shipped browser sample ''''ResizableRows'''' [ \\windows\Grid.Grouping.Windows\Samples\ResizableRows] which demonstrates a way to resize the record height in the grid using GroupinEngine.

Here is a path:
C:\Program Files\Syncfusion\Essential Studio\4.2.0.37\windows\Grid.Grouping.Windows\Samples\ResizableRows

Let me know if this helps.
Best Regards,
Haneef


SB Sivaiah Boppana August 16, 2006 11:19 AM UTC

Hi Haneef


I need to change only child table row ‘s height and make it as scrollable, and I am using Syncfusion 3.2.1.0 .

The example which I found in 3.2.1.0 is not much useful now.

Thanks
Sivaiah

>Hi Sivaah,

Please refer to our shipped browser sample ''''ResizableRows'''' [ \\windows\Grid.Grouping.Windows\Samples\ResizableRows] which demonstrates a way to resize the record height in the grid using GroupinEngine.

Here is a path:
C:\Program Files\Syncfusion\Essential Studio\4.2.0.37\windows\Grid.Grouping.Windows\Samples\ResizableRows

Let me know if this helps.
Best Regards,
Haneef


AD Administrator Syncfusion Team August 16, 2006 12:24 PM UTC

Hi Sivaiah,

Please refer the below forum thread for more details.
http://www.syncfusion.com/Support/Forums/message.aspx?MessageID=45803

Thanks,
Haneef

Loader.
Live Chat Icon For mobile
Up arrow icon