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
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