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

[Solved] Content dissapearing in IE7

1 Answer 100 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Amey
Top achievements
Rank 1
Amey asked on 13 Nov 2009, 07:34 PM
Hi,

If I paste the following content into the RadEditor HTML view:


<!-- Start of Brightcove Player --> 
 
<div style="display: none;"
 
</div> 
 
<!-- 
By use of this code snippet, I agree to the Brightcove Publisher T and C  
found at http://corp.brightcove.com/legal/terms_publisher.cfm.  
--> 
 
<script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script> 
 
<object class="BrightcoveExperience" id="myExperience50110418001"
  <param name="bgcolor" value="#FFFFFF"
  <param name="width" value="411"
  <param name="height" value="308"
  <param name="playerID" value="49906927001"
  <param name="publisherID" value="21742339001"
  <param name="isVid" value="true"
     
  <param name="@videoPlayer" value="50110418001"
</object> 
 
<!-- End of Brightcove Player --> 

Then switch to Design view, then back to HTML view, it becomes this:

<!-- Start of Brightcove Player --><div style="display: none;"></div><!-- 
By use of this code snippet, I agree to the Brightcove Publisher T and C  
found at http://corp.brightcove.com/legal/terms_publisher.cfm.  
--><script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script><!-- End of Brightcove Player --> 

This of course, breaks our video player you then save again.....any idea why this is happening?

1 Answer, 1 is accepted

Sort by
0
Rumen
Telerik team
answered on 18 Nov 2009, 02:58 PM
Hello Christian ,

To fix this problem you should set a classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000" attribute in the Object tag, e.g.

<!-- Start of Brightcove Player -->
  
<div style="display: none;">
  
</div>
  
<!--
By use of this code snippet, I agree to the Brightcove Publisher T and C 
-->
  
<script language="JavaScript" type="text/javascript" src="http://admin.brightcove.com/js/BrightcoveExperiences.js"></script>
  
<object class="BrightcoveExperience" id="myExperience50110418001" classid="clsid:D27CDB6E-AE6D-11cf-96B8-444553540000">
  <param name="bgcolor" value="#FFFFFF">
  <param name="width" value="411">
  <param name="height" value="308">
  <param name="playerID" value="49906927001">
  <param name="publisherID" value="21742339001">
  <param name="isVid" value="true">
      
  <param name="@videoPlayer" value="50110418001">
</object>
  
<!-- End of Brightcove Player -->


Kind regards,
Rumen
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
Editor
Asked by
Amey
Top achievements
Rank 1
Answers by
Rumen
Telerik team
Share this question
or