Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I created a some javascript/jquery code to filter an html table. The filter works by assigning two classes to the rows ('show' and 'hide') depending on the value of certain cells and then using CSS to hide the rows with the 'hide' class. The filter works perfectly. However, when I apply the filter, somehow the table row height keeps changing (usually the height increases significantly - ~ 2 or 3 times the desired height). I have no idea why this is happening. My code is a few hundred lines so I don't think it would be worth pasting here. And I have no idea which section(s) of my code are causing the problem (or whether the issue is with the javascript/jquery or external css file).

Can anyone offer some suggestions for how I can best debug this problem?

EDIT: In addition to the row height increasing (the main problem), the column width also shrinks a little when the filter is applied.

UPDATE: I solved the problem (at least for the changing row heights). It was related to a CSS setting where I set the height of the table body. Thanks to the suggestions below, I used Firebug to inspect everything more closely. I found a feature in Firebug that allows you to turn on/off CSS properties, as well as delete DOM elements. By using those features, I was able to isolate the on CSS property that was causing the problems. Thanks for the input everyone.

share|improve this question
1  
Have you look at the table with a DOM inspector? – mu is too short May 13 '11 at 21:34
Yes, I'm using Firebug, but that hasn't led to any insights yet. – jake May 13 '11 at 21:35
Can you put the relevant code into JSFiddle for us to look over? – SickHippie May 13 '11 at 21:38
Including a bit of relevant HTML and CSS would be helpful. – mu is too short May 13 '11 at 21:42
I'm not certain which parts are relevant as I don't know whether its the script or CSS that's causing the problem. – jake May 13 '11 at 21:51
show 3 more comments

2 Answers

up vote 0 down vote accepted

I solved the problem (at least for the changing row heights). It was related to a CSS setting where I set the height of the table body. Thanks to the suggestions below, I used Firebug to inspect everything more closely. I found a feature in Firebug that allows you to turn on/off CSS properties, as well as delete DOM elements. By using those features, I was able to isolate the on CSS property that was causing the problems. Thanks for the input everyone.

share|improve this answer

Are you trying to do something like this.

If so then see if that helps or if you can put a sample like that which replicates the problem.

What I can think of is:

1: The class that is being applied when your hide/show has some issues.

2: The elements on which you are trying to apply the classes are wrong.

May be you can post some sample markup before and after filters.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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