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

Adding RadSlider making css style sheets not working propperly

4 Answers 68 Views
Slider
This is a migrated thread and some comments may be shown as answers.
A2H
Top achievements
Rank 1
A2H asked on 16 May 2012, 06:16 AM
Hi,
I have a page designed in Asp.Net.It has a External css style sheet linked to the page using 'Link' tag.

Every things works fine including all styles are getting properly applied to the page.
But when I add a rad slider to the page.Css  is not working properly.No Styles are applied to controls.

Again all works fine when I comment out the line of code for RadSlider.
Issue is happening only when I add RadSlider to the page.

I have a master page to my web application.

Html COde for my page will be like this:

<div>
 <telerik:RadPanelBar ID="TestPanelBar" runat="server" 
                Width="75%" Height="526px" ExpandMode="FullExpandedItem" Style="margin-left: 15px;">
                <collapseanimation type="InCubic" />
                <items>
                <telerik:RadPanelItem Text="Test"  Value="TestPanelItem" 
                Style="font-weight: bold;horizontal-align: center" Expanded="true">
                <ContentTemplate>
<table border="0" cellpadding="0" cellspacing="0" style="margin-left: 15px;">
                        <tr>
                           
<td style="padding: 0 5px 5px 0;">
                               <telerik:RadSlider ID="
RadSlider" runat="server" MinimumValue="10" Enabled="false"
                                                MaximumValue="
50" />
                            </td>
                         </tr>

  </table>
                </ContentTemplate>
                </telerik:RadPanelItem>
                </items>
            </telerik:RadPanelBar>
        </div>




Thanks,
Ajeesh

4 Answers, 1 is accepted

Sort by
0
A2H
Top achievements
Rank 1
answered on 16 May 2012, 08:33 AM
Hi,

Any  thought on this case.
0
A2H
Top achievements
Rank 1
answered on 16 May 2012, 07:38 PM
Bringing to Top
0
Accepted
Slav
Telerik team
answered on 18 May 2012, 03:03 PM
Hello Ajeesh,

The described problem could be caused by the Internet Explorer CSS limit that allows only 31 stylesheets per page. You can find more information about this problem in this blog post. A possible solution for such a scenario is to utilize the RadStyleSheetManager control, as it combines the requests for the CSS resources, which will avoid the IE limitation.

Regards,
Slav
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.
0
A2H
Top achievements
Rank 1
answered on 21 May 2012, 09:37 AM
Hi,

That's Fixed my Issue. Now Style sheets are working fine.

Thanks Slav......
Tags
Slider
Asked by
A2H
Top achievements
Rank 1
Answers by
A2H
Top achievements
Rank 1
Slav
Telerik team
Share this question
or