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

RadGrid (virtual scrolling) inside Radwindow

1 Answer 58 Views
Window
This is a migrated thread and some comments may be shown as answers.
orim
Top achievements
Rank 1
orim asked on 19 Oct 2012, 10:37 AM
Hi,
i have a radgrid inside a radwindow. I enabled virtual scrolling and fixheaders on grid.
The issue is - when i resize my radwindow the content of the grid get disapeared.
Any idea
Thanks

1 Answer, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 22 Oct 2012, 01:14 PM
Hi,

It seems there is a problem in this configuration. I am logging it for research and you can follow it, comment and vote in this URL. I have also updated your Telerik points for your report.

In the meantime the behavior can be alleviated to a certain extend with the following two event handlers for the RadWindow:
function OnClientShow(sender, args)
{
    sender._popupBehavior._manageVisibility = false;
}
 
function OnClientBeforeClose(sender, args)
{
    sender._popupBehavior._manageVisibility = true;
}
Note that they cannot handle all cases (e.g. minimizing the RadWindow), but you can disable that Behavior of the control if you see fit. I am also attaching here a simple page that shows them in action. It uses the Telerik.mdf database from our online demos.


Greetings,
Marin Bratanov
the Telerik team
If you want to get updates on new releases, tips and tricks and sneak peeks at our product labs directly from the developers working on the RadControls for ASP.NET AJAX, subscribe to their blog feed now.
Tags
Window
Asked by
orim
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Share this question
or