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

RadMenu and Silverlight Object

1 Answer 37 Views
Menu
This is a migrated thread and some comments may be shown as answers.
Michael
Top achievements
Rank 1
Michael asked on 17 Dec 2009, 06:16 PM
I'm having an issue where my RadMenu is behind my Silverlight object.  I cannot seem to find the Windowless mode property that seems to make the issue not happen -- here is my code:

<body> 
    <form id="form1" runat="server" style="height:100%">  
    <div id="silverlightControlHost">  
        <object data="data:application/x-silverlight-2," type="application/x-silverlight-2" width="100%" height="100%">  
          <param name="source" value="ClientBin/BioDMap.xap"/>  
          <param name="onError" value="onSilverlightError" /> 
          <param name="background" value="white" /> 
          <param name="minRuntimeVersion" value="3.0.40624.0" /> 
          <param name="autoUpgrade" value="true" /> 
          <href="http://go.microsoft.com/fwlink/?LinkID=149156&v=3.0.40624.0" style="text-decoration:none">  
              <img src="http://go.microsoft.com/fwlink/?LinkId=161376" alt="Get Microsoft Silverlight" style="border-style:none"/>  
          </a> 
        </object><iframe id="_sl_historyFrame" style="visibility:hidden;height:0px;width:0px;border:0px"></iframe></div>  
    </form> 
</body> 

Any idea?  I've got this code running inside of a frame but all other controls are fine except for this Silverlight object.

Thanks in advance,

1 Answer, 1 is accepted

Sort by
0
T. Tsonev
Telerik team
answered on 21 Dec 2009, 05:39 PM
Hello Michael,

You need to add the windowless parameter and set it to true:

<param name="windowless" value="true" />

This should do the trick.

Best wishes,
Tsvetomir Tsonev
the Telerik team

Instantly find answers to your questions on the new Telerik Support Portal.
Watch a video on how to optimize your support resource searches and check out more tips on the blogs.
Tags
Menu
Asked by
Michael
Top achievements
Rank 1
Answers by
T. Tsonev
Telerik team
Share this question
or