Embedded video is not shown in Internet Explorer 9 RC or Beta

3,787

Solution 1

I've checked, it works here so it's a local issue for you.

enter image description here


Let's work from bottom to top:

  1. Reset your Internet Explorer settings, this should get any odd settings that bug you gone.

    enter image description here

    I suspect is that embedding is disabled, as in my screenshot above, it is a YouTube video.

  2. Uninstall Java, Flash and Shockwave; then uninstall Internet Explorer. Then reinstall.

  3. Try different versions from Flash to check for Compatibility issues.

  4. Disable your Virus Scanner and Firewall to ensure that they aren't bothering you.

  5. As it works as administrator, use Process Monitor and filter the Status on ACCESS DENIED.

    This allows you to troubleshoot what key the iexplore.exe process can't access.

  6. Updating graphics drivers won't work. I'm out of options, it's a RC, live with it...

Solution 2

I'd recomend uninstalling flash and reinstalling it. The flash install is different for FireFox than it is for IE so switching between the two will not give apples to apples comparisons.

I've noticed with the IE9 beta/RC Flash 10.2 works better than 10.1.

Share:
3,787

Related videos on Youtube

kleww
Author by

kleww

Updated on September 17, 2022

Comments

  • kleww
    kleww over 1 year

    I try to add a checkbox column in my kendo grid. I use the code in this link :

    http://www.telerik.com/support/code-library/select-grid-rows-using-checkboxes-and-preserve-it-between-the-pages

    But it doesn't work with a razor page. Here's my code :

    cshtml :

          @(Html.Kendo().Grid<IQuestArchive>().Name("archivesGrid")
            .DataSource(dataSource => dataSource.Ajax().Read(read => read.Action("Archives_Read", "Home").Type(HttpVerbs.Get))
            .Sort(sort => sort.Add("Name").Ascending())).Columns(columns =>
                {
                    columns.Template(@<text></text>).ClientTemplate("<input type='checkbox' class='checkbox'/>").Title("<input type='checkbox'/>").Width(10);
                    columns.Bound(request => request.ReadableName).Title("Name");
                }).Sortable().Selectable(builder => builder.Mode(GridSelectionMode.Multiple).Type(GridSelectionType.Row)))
    

    script:

       //bind click event to the checkbox
       $("#archivesGrid").table.on("click", ".checkbox" , selectRow);
    
       //on click of the checkbox:
        function selectRow() {
            var checked = this.checked,
                row = $(this).closest("tr"),
                grid = $("#archivesGrid").data("kendoGrid"),
                dataItem = grid.dataItem(row);
    
            checkedIds[dataItem.id] = checked;
            if (checked) {
                //-select the row
                row.addClass("k-state-selected");
            } else {
                //-remove selection
                row.removeClass("k-state-selected");
            }
        }
    

    I don't understand what's going wrong and if I compare with the code in link before it's exactly the same logic...:s

    • Moab
      Moab over 13 years
    • Jagannath
      Jagannath over 13 years
      I tried the solution of enabling software rendering instead of GPU accelaration. Still I don't see the embedded video.
    • 100rabh
      100rabh over 13 years
      Well, it's beta/RC software for a reason
    • Tamara Wijsman
      Tamara Wijsman over 13 years
      You've accepted my solution, what step did help you? Also, the bounty is still running, do you need something more or did you forget to assign it?
    • Tamara Wijsman
      Tamara Wijsman over 13 years
      Oh, you've updated your answer (please note that this does not inform me so I didn't saw that), nice job on using Process Monitor! :-)
    • Jonathan Buchanan
      Jonathan Buchanan almost 10 years
      You need a reference of your kendo grid widget. To do this use this code: $("#archivesGrid").data("kendoGrid")