Skip to main content

Search and Top Navigation

#5575 closed bug (cantfix)

Opened May 01, 2010 08:56AM UTC

Closed November 05, 2012 01:33PM UTC

Last modified July 16, 2014 11:16AM UTC

Sortable: iFrame reloads on move

Reported by: CactO_o's Owned by:
Priority: major Milestone: 2.0.0
Component: ui.sortable Version: 1.8
Keywords: iframe reload sortable Cc:
Blocked by: Blocking:
Description

For this code example :

<ul id="sortable">
 <li>
    <iframe src="example.html"></iframe>
 </li>
 <li>
    <!-- -->
 </li>
</ul>

The iFrame is reloaded for each movement.

Attachments (0)
Change History (6)

Changed May 11, 2010 10:17AM UTC by watanabe comment:1

I think there is no way to solve the problem.

Sample iframe:

<iframe src="javascript:new Date().getTime().toString()"></iframe>

Test Code:

$("#testButton").click(function () {
 $("iframe").appendTo(document.body);
});

The iframe is reloaded in

  • Chrome 4.1.249.1064 (45376)
  • Opera 10.53
  • Safari 3.2.2 (525.28.1)
  • Firefox 3.5.9

It is not reloaded in

  • IE 8.0.6001.189004
  • IE 6.0.2900.5512_xpsp_sp3_gdr.100216-1514

Changed October 19, 2010 03:32PM UTC by scottgonzalez comment:2

priority: criticalmajor

Changed May 02, 2011 07:39PM UTC by lilpurplefaery comment:3

A workaround is now possible in Webkit browsers if you use adoptNode() to move the iframe (https://bugs.webkit.org/show_bug.cgi?id=13574#c10). Firefox still does not have a workaround (https://bugzilla.mozilla.org/show_bug.cgi?id=254144). But, it might be nice to apply the Webkit workaround, even if that is only a partial fix.

Changed October 11, 2012 09:07PM UTC by scottgonzalez comment:4

milestone: TBD2.0.0

Changed November 05, 2012 01:33PM UTC by mikesherov comment:5

resolution: → cantfix
status: newclosed
summary: iFrame reload on sortableSortable: iFrame reloads on move

Thanks for contributing! Unfortunately, we can't fix this until Firefox addresses the issue as well, as we're not going to implement a partial solution here. Periodically, we'll check to see if this is fixed in FF. until then, this is cantfix.

Changed July 16, 2014 11:16AM UTC by pjpatel214 comment:6

In Atlansian Jira, this bug is resolved, They use iframe in widget of dashboard, while I move widget, iframe not reload. This feature works in all browser. I don't understand how they achieve it.