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

Telerik

2 Answers 109 Views
Window
This is a migrated thread and some comments may be shown as answers.
Hugo
Top achievements
Rank 1
Hugo asked on 05 Jun 2013, 03:18 PM
Hi!

I'm using DotNetNuke 7.0.6 and when editing some containers it's showing the following message.

"A critical error has occurred. Telerik.Web.UI.RadWindow with ID='Window' was unable to find an embedded skin with the name 'Black'. Please, make sure that the skin name is spelled correctly and that you have added a reference to the Telerik.Web.UI.Skins.dll assembly in your project. If you want to use a custom skin, set EnableEmbeddedSkins=false."

Have you ran into this?

Thanks and best regards!
Hugo Figueira

2 Answers, 1 is accepted

Sort by
0
Marin Bratanov
Telerik team
answered on 07 Jun 2013, 10:09 AM
Hi Hugo,

This error means that the Telerik.Web.UI.Skins.dll assembly is not properly referenced in the project. Note that its version must match exactly the version of the main Telerik.Web.UI.dll assembly. If you have tried to upgrade your dlls manually you may need a binidingRedirect for the skins assembly as well.


Regards,
Marin Bratanov
Telerik
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 the blog feed now.
0
Hugo
Top achievements
Rank 1
answered on 07 Jun 2013, 11:57 AM
Hi Marin,

With your reply on bindingRedirect I found a similar post here http://www.telerik.com/community/forums/aspnet-ajax/general-discussions/version-problem.aspx and found my answer!

I remember updating the assembly directly in the bin folder, so updated the web.config with the following lines (bold)
  <bindingRedirect oldVersion="2013.1.403.40" newVersion="2013.1.417.40" />
  <bindingRedirect oldVersion="2013.1.403.40" newVersion="2013.1.417.45" />

The web.config:

      <dependentAssembly>
        <assemblyIdentity name="Telerik.Web.UI" publicKeyToken="121fae78165ba3d4" />
        <!--Upgraded by DotNetNuke.Telerik.Web version 7.0.6 - Date: 5/23/2013 2:34:44 PM-->
        <!--<bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2013.1.403.40" xmlns="urn:schemas-microsoft-com:asm.v1" />-->
        <bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2013.1.417.40" />
        <bindingRedirect oldVersion="2013.1.403.40" newVersion="2013.1.417.40" />
      </dependentAssembly>
      <dependentAssembly>
        <assemblyIdentity name="Telerik.Web.UI.Skins" publicKeyToken="121fae78165ba3d4" />
        <!--Upgraded by DotNetNuke.Telerik.Web version 7.0.6 - Date: 5/23/2013 2:34:44 PM-->
        <!--<bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2013.1.403.40" xmlns="urn:schemas-microsoft-com:asm.v1" />-->
        <bindingRedirect oldVersion="2008.0.0.0-2020.0.0.0" newVersion="2013.1.417.45" />
        <bindingRedirect oldVersion="2013.1.403.40" newVersion="2013.1.417.45" />
      </dependentAssembly>


Thanks so much for taking the time.

Best Regards!
Tags
Window
Asked by
Hugo
Top achievements
Rank 1
Answers by
Marin Bratanov
Telerik team
Hugo
Top achievements
Rank 1
Share this question
or