Opened 14 years ago
Closed 14 years ago
#4492 closed bug (duplicate)
show(speed) looses table-rowspan attribute
Reported by: | glg1 | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 1.4 |
Component: | effects | Version: | 1.3.2 |
Keywords: | Cc: | ||
Blocked by: | Blocking: |
Description
Using $(".ColumnName").show("slow"); where <th rowspan = 5> to make visible a column results in loss of the rowspan.
This does not happen if no speed is used $(".ColumnName").show(); works fine and the rowspan is retained.
Change History (2)
comment:1 Changed 14 years ago by
Component: | unfilled → fx |
---|---|
need: | Review → Test Case |
comment:2 Changed 14 years ago by
Resolution: | → duplicate |
---|---|
Status: | new → closed |
Consolidated at #4535
Note: See
TracTickets for help on using
tickets.
When no speed is given the code simply changes the
display
property, but when there is a speed it uses theanimate
method. So something in the animation must be clearing the rowspan.Can you create a simple test case?