Bug Tracker

Ticket #2041 (closed bug: wontfix)

Opened 12 months ago

Last modified 12 months ago

Firefox: animations don't work on table rows (tr) because display:block; should be display:;

Reported by: beat Owned by:
Priority: minor Milestone: 1.2.2
Component: fx Version: 1.2.1
Keywords: slideUp slideDown table tr display block Cc:
Needs: Review

Description

$("tr.contentRowToChange).slideUp("slow");

doesn't work as expected in Firefox 2.0.11, as it changes the display type of the tr element to "block", all the content gets into the first column of table.

I have found that changing display type to "" instead of "block" works on all instances.

http://jszen.blogspot.com/2004/07/table-rowsrevealed.html

$("tr.contentRowToChange).slideDown("slow");

has another bug: it leaves the space visible, but didn't find why.

Change History

Changed 12 months ago by davidserduke

This is likely related to #1082.

Changed 12 months ago by john

  • status changed from new to closed
  • resolution set to wontfix

You can't slide table rows, as you can't manipulate the height of them. Any solution to this is far too convoluted to implement sanely. It's probably better to just use regular, non-animated, hide and show for now.

Note: See TracTickets for help on using tickets.