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

Stylebuilder Theme Doesn't Apply

3 Answers 142 Views
Themes and Visual Style Builder
This is a migrated thread and some comments may be shown as answers.
Prava kafle
Top achievements
Rank 1
Prava kafle asked on 20 May 2011, 06:07 PM
Hi,

I created a theme called "M4" and tried to use it for Telerik Ajax RadScheduler, I followed all the steps  mentioned in Video"http://tv.telerik.com/watch/aspnet/visualstylebuilder/visual-style-builder-aspnet-ajax-overview" but still it doesnot work.

1. Add all folders and .css file for Scheduler in
~/App_Themes/Theme1 folder
2. On Radscheduler  control, set skin="M4" and EnableEmbeddedSkins="false"

Am I missing anything?
Prava

3 Answers, 1 is accepted

Sort by
0
Peter
Telerik team
answered on 24 May 2011, 03:35 PM
Hello Prava,

Also, make sure that you register the stylesheet in your page as shown in this help topic (step 2) -
http://www.telerik.com/help/aspnet-ajax/introduction-skin-registration.html

Let me know if you still experience any problems.


Kind regards,
Peter
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

0
Prava kafle
Top achievements
Rank 1
answered on 24 May 2011, 03:54 PM
Hi Peter,

Custom Skin Files are in App_Theme folder and they are automatically registered. I am trying to implement custom skin at application level and am finally able to do so with  little bit of trick here and there. I added "<add key ="Skin" value ="M4"/>" in app settings   and it did not work so,  I am setting skin = M4 for all rad Controls in webconfig file.
<appSettings>
        <add key="Telerik.Skin" value="Telerik"/>
        <add key="Telerik.ScriptManager.TelerikCdn" value="Enabled"/>
        <add key="Telerik.StyleSheetManager.TelerikCdn" value="Enabled"/>

    <!-- Disables the embedded scripts and skins for all RadControls -->
    <add key="Telerik.EnableEmbeddedSkins" value="false"/>
    <add key ="Skin" value ="M4"/>     <!-- THIS DIDNOT WORK -->
 
    <add key="Telerik.Button.Skin" value="M4" /> <!-- THIS  WORKS -->
    <add key="Telerik.Calendar.Skin" value="M4" />
    <add key="Telerik.ColorPicker.Skin" value="M4" />
    <add key="Telerik.ComboBox.Skin" value="M4" />
    <add key="Telerik.FormDecorator.Skin" value="M4" />
    <add key="Telerik.Grid.Skin" value="M4" />
    <add key="Telerik.Input.Skin" value="M4" />
    <add key="Telerik.ListBox.Skin" value="M4" />
    <add key="Telerik.Upload.Skin" value="M4" />

    <add key="Telerik.Menu.Skin" value="M4" />
    <add key="Telerik.PanelBar.Skin" value="M4" />
    <add key="Telerik.Scheduler.Skin" value="M4" />
    <add key="Telerik.Splitter.Skin" value="M4" />
    <add key="Telerik.TabStrip.Skin" value="M4" />
    <add key="Telerik.ToolTip.Skin" value="M4" />
    <add key="Telerik.Window.Skin" value="M4" />
    <add key="Telerik.Upload.Skin" value="M4" />
  
 <add key="Telerik.AjaxLoadingPanel.Skin" value="WebBlue" />
    

  </appSettings>

<system.web>
     <pages enableEventValidation="false"   theme="Theme1">
     ..
</system.web>

Adding skin value for individual RadControls works but my application is taking too much time  in rendering. How can I add/Register  my custom skin to RadSkinManager, Is it even possible?

Style sheet Builder  doesn't  have an option to create skin for Ajax Loading Panel, I am using Radwindow and initially it displayed loading panel untill external page was fully loaded. How can I show custom/built in loading panel with custom Radwindow?


Thank you very much for the guidance.
Prava
0
Peter
Telerik team
answered on 30 May 2011, 09:10 AM
Hello Prava,

Adding a RadSkinManager to your page and specifying the skin should suffice. Here is help topic for more details - http://www.telerik.com/help/aspnet-ajax/radskinmanager.html.

The skins for RadAjaxLoadingPanel do not actually vary and that is why Telerik's visual style builder tool does not have an option to create a custom skin for this control.You can add a custom image instead as shown in this demo - http://demos.telerik.com/aspnet-ajax/ajax/examples/loadingpanel/transparency/defaultcs.aspx.


Best wishes,
Peter
the Telerik team

Browse the vast support resources we have to jump start your development with RadControls for ASP.NET AJAX. See how to integrate our AJAX controls seamlessly in SharePoint 2007/2010 visiting our common SharePoint portal.

Tags
Themes and Visual Style Builder
Asked by
Prava kafle
Top achievements
Rank 1
Answers by
Peter
Telerik team
Prava kafle
Top achievements
Rank 1
Share this question
or