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

rad slider disappear while using update panel in chrome browser

1 Answer 43 Views
Ajax
This is a migrated thread and some comments may be shown as answers.
Yamin
Top achievements
Rank 1
Yamin asked on 10 Apr 2012, 09:26 AM
Hi,
I'm got some problem while using the rad slider  control.
1) I using the rad tab strip that have two tabs for each user control inside the multipage container.
2) Each user control page( .ascx) , I using asp.net update panel in order to rendering partially on each page.
eg. I have two user control pages.
general.ascx and slider.ascx(which contain the slider control)
In general page , i have a button named process.
The problem is once i click on the process button in the general.ascx page, and then i go to the slider.ascx page ,the rad slider disappear.
Please see the attachment picture, below.


Thanks
Yamin




1 Answer, 1 is accepted

Sort by
0
Tsvetina
Telerik team
answered on 13 Apr 2012, 04:15 PM
Hi Yamin,

Try explicitly registering the slider skin to make sure that the problem is not related to loading styles after AJAX. You can use the RadStyleSheetManager control for this purpose:
<telerik:RadStyleSheetManager ID="RadStyleSheetManager1" runat="server">
</telerik:RadStyleSheetManager>

protected void Page_Load(object sender, EventArgs e)
{
    RadStyleSheetManager1.RegisterSkinnableControl(RadSlider1);
}

Regards,
Tsvetina
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
Ajax
Asked by
Yamin
Top achievements
Rank 1
Answers by
Tsvetina
Telerik team
Share this question
or