hide table rows if empty

AntonioKamol

New Member
I have a table in my JSP that can, when the page is generated have empty and I want to know if there is a way for me to hide them only if they have no actual text in them, here is what they look like.\[code\]<TABLE border="1" style="empty-cells:hide;padding-left:4px"><TR> <TD><s:property value="http://stackoverflow.com/questions/12731789/barfoo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/bar"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foobar"/></TD></TR><TR> <TD><s:property value="http://stackoverflow.com/questions/12731789/barfoo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/bar"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foobar"/></TD></TR><TR> <TD><s:property value="http://stackoverflow.com/questions/12731789/barfoo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/bar"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foobar"/></TD></TR><TR> <TD><s:property value="http://stackoverflow.com/questions/12731789/barfoo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foo"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/bar"/></TD> <TD align="center"><s:property value="http://stackoverflow.com/questions/12731789/foobar"/></TD></TR></TABLE>\[/code\]but the thing is not all of them will be filled out all the time, sometimes they will basically return null values just leaving behind an empty space, and I want to hide them only if they are going to leave that empty space any way I can use a simple solution that works on most browsers to hide that blank space?
 
Back
Top