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

Silverlight 3 HtmlPlaceholder VLC plugin IE7

1 Answer 96 Views
HTMLPlaceHolder
This is a migrated thread and some comments may be shown as answers.
Marjan
Top achievements
Rank 1
Marjan asked on 26 Aug 2009, 09:02 AM
Hi,

I'm trying to display a rtsp stream using vlc plugin in a silverlight 3 application. The plugin is in htmlplaceholder because it is a embeded html object? It is working ok in Mozilla but not in IE7. The html placeholder is not showing. Here is example :

tlrkHolder.HtmlSource = @"<div style='position:absolute;top:0px;left:0px;margin:2px; width:500px; height:400px;background-color: Red; border: solid 3px Blue;'>
            <object classid='clsid:9BE31822-FDAD-461B-AD51-BE1D1C159921'
                codebase='http://downloads.videolan.org/pub/videolan/vlc/latest/win32/axvlc.cab'
                width='400' height='300' id='vlc' events='True'>
                <param name='Src' value='rtsp://192.168.9.58:554/video.3gp'></param>
                <param name='ShowDisplay' value='True'></param>
                <param name='AutoLoop' value='no'></param>
                <param name='AutoPlay' value='yes'></param>
                <embed type='application/x-vlc-plugin' name='vlcfirefox' autoplay='yes' loop='no'
                    width='400' height='300'
                target='rtsp://192.168.9.58:554/video.3gp'></embed>
                </object>               
                <script type='text/javascript'>
                window.onload = function(){
                    var vlc = document.getElementById('vlc');
                    vlc.playlist.playItem( vlc.playlist.add('rtsp://192.168.9.58:554/video.3gp') );
                };
                </script>
                </div>";

RadHtmlPlaceholder x:Name="tlrkHolder" Grid.Row="2" Grid.Column="0" Width="526" Height="426" Margin="0,0,0,0" Background="Green"></telerik:RadHtmlPlaceholder>

Can you please confirm/clear the issue if maybe there are some problems between the placeholder and IE7.

Best Regards,
Marjan

1 Answer, 1 is accepted

Sort by
0
Kiril Stanoev
Telerik team
answered on 26 Aug 2009, 02:24 PM
Hi Marjan,

We are not aware of any issues between RadHtmlPlaceholder and Internet Explorer 7. The way RadHtmlPlaceholder works is that internally it creates a DIV element and assigns its HtmlSource property to the DIV's InnerHtml property.

Regards,
Kiril Stanoev
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
HTMLPlaceHolder
Asked by
Marjan
Top achievements
Rank 1
Answers by
Kiril Stanoev
Telerik team
Share this question
or