vote up 8 vote down star

I'm trying to add a row to a table and have that row slide into view, however the slidedown function seems to be adding a display:block style to the table row which messes up the layout.

Any ideas how to work around this?

Here's the code:

$.get('/some_url',{'val1':id},
    function(data){
        var row = $('#detailed_edit_row');            
        row.hide();
        row.html(data);
        row.slideDown(1000);            
    });
flag

74% accept rate
Does it have to be a table? Be a lot easier without the table I think. – MrChrister Jan 21 at 23:10

2 Answers

vote up 12 vote down

Animations are not supported on table rows.

From "Learning jQuery" by Chaffer and Swedberg


Table rows present particular obstacles to animation, since browsers use different values (table-row and block) for their visible display property. The .hide() and .show() methods, without animation, are always safe to use with table rows. As of jQuery version 1.1.3, .fadeIn() and .fadeOut() can be used as well.


You can wrap your td contents in a div and use the slideDown on that. You need to decide if the animation is worth the extra markup.

link|flag
Works great! There's a minor other gotcha: You'll also have to animate cell padding if there is any. But that's not a big deal either. – Adrian Grigore Sep 10 at 7:31
vote up 2 vote down

You could try wrapping the contents of the row in a <span> and having your selector be $('#detailed_edit_row span'); - a bit hackish, but I just tested it and it works. I also tried the table-row suggestion above and it didn't seem to work.

update: I've been playing around with this problem, and from all indications jQuery needs the object it performs slideDown on to be a block element. So, no dice. I was able to conjure up a table where I used slideDown on a cell and it didn't affect the layout at all, so I am not sure how yours is set up. I think your only solution is to refactor the table in such a way that it's ok with that cell being a block, or just .show(); the damn thing. Good luck.

link|flag
That didn't work for me, it made <span style="display: block;">... – Greg Jan 21 at 23:09

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.