This is a migrated thread and some comments may be shown as answers.

Two GridView selection relationship

1 Answer 39 Views
GridView
This is a migrated thread and some comments may be shown as answers.
Lee
Top achievements
Rank 1
Lee asked on 03 Mar 2015, 02:52 AM
Hi.

Currently, I have two gridview.

one thing is page list.

another thing is items list about that.

I want to changed item list by selecting page list.

below my code.
----------------------------------------------------------------------------------------
void Selection(object selecteditem)
{
   .....
    if (ManagerType == AppType.Status)
        StatusTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
    if (ManagerType == AppType.Analog)
        AnalogTag.DataFilter(Page.PageItemList.Where(r => r.PageNum == pageNum).ToList());
   ....
}
----------------------------------------------------------------------------------------

It's well behaving.

But it seems that memory crash.

Because pipe communication is disconnected.

Why occur that problem?

1 Answer, 1 is accepted

Sort by
0
Ivan Ivanov
Telerik team
answered on 03 Mar 2015, 09:26 AM
Hello,

Can you please provide some more information about your scenario? Having this code snippet outside of its original context makes it difficult for us to relate it to RadGridView. If it is possible, you can try isolating the issue in a sample project that we can debug on our side and send the project through a support ticket.

Regards,
Ivan Ivanov
Telerik
 

Check out the Telerik Platform - the only platform that combines a rich set of UI tools with powerful cloud services to develop web, hybrid and native mobile apps.

 
Tags
GridView
Asked by
Lee
Top achievements
Rank 1
Answers by
Ivan Ivanov
Telerik team
Share this question
or