Hi,
I am using Radrotator control inside modalpopup(using modalpopup extender). But while i am running my project and show modalpopup Radrotator is not displaying. Normally it is working fine(without modalpopup).
Can you please tell me why it is happening?.
3 Answers, 1 is accepted
0
Marin Bratanov
Telerik team
answered on 19 Apr 2011, 08:13 AM
Hi Sanjay,
I have answered your other thread on the matter, but for your convenience and to help other that may encounter a similar issue I am pasting the reply here as well:
By default, RadRotator has visibility hidden and after page is initialized it is changed to visible. In your case this visibility change is prevented, so you should do it yourself.
For example you could repaint the Rotator after you show it:
$find("<%= RadRotator1.ClientID %>").repaint();
If this does not work you could try to set a timeout:
Another approach is to check whether its wrapper is somehow hidden (either by the visibility or by the display property). You can get a reference to the wrapper by using the getElementById() method or by inspecting the DOM by using the Developer Toolbar or a tool like FireBug: