Preview cell

Hi
In GGC which is showing nested tables with relations, i need to show a preview in the child table

i tryied this

myGrid.TableOptions.ShowRecordPreviewRow =true

but it shows preview cell on parent table row

plese let me know i can i do that.

4 Replies

AD Administrator Syncfusion Team August 8, 2006 09:07 AM UTC

Hi Sivaiah,

Please try the attached sample that works fine on my system which has "Essential Studio 4.2 +.Net FrameWork 1.1/2.0+windows XP" installed . Let us know if you face any other issues.

Here is a sample
http://www.syncfusion.com/Support/user/uploads/NestedTable_fcb55367.zip

Thanks for choosing Syncfusion products.
Best Regards,
Haneef


SB Sivaiah Boppana August 8, 2006 04:15 PM UTC

hi
plese find the attachment,i need to have record preview of the child record. when i say
myGrid.TableDescriptor.TableOptions.ShowRecordPreviewRow = true; it shows the record preview on parent table record.please let me know how can i get record preview only on child table record in GGC which displaying Nested Tables
Thanks
Sivaiah


SB Sivaiah Boppana August 8, 2006 04:17 PM UTC


>hi
plese find the attachment,i need to have record preview of the child record. when i say
myGrid.TableDescriptor.TableOptions.ShowRecordPreviewRow = true; it shows the record preview on parent table record.please let me know how can i get record preview only on child table record in GGC which displaying Nested Tables
Thanks
Sivaiah

preview.zip


AD Administrator Syncfusion Team August 9, 2006 04:30 AM UTC

Hi Sivaiah,

Please try this code snippet to show the Preview record in all nested tables.

this.myGrid.TableOptions.ShowRecordPreviewRow = true;
this.myGrid.TableDescriptor.TableOptions.ShowRecordPreviewRow = false;

//For Particular Table
this.myGrid.GetTableDescriptor("TableName").TableOptions.ShowRecordPreviewRow = false;

Let me know if this helps.
Thanks,
Haneef

Note :

this.myGrid.TableDescriptor indicates the Main TableDescriptor

Loader.
Up arrow icon