From: <rv...@us...> - 2012-02-14 20:40:41
|
Revision: 1061 http://treebase.svn.sourceforge.net/treebase/?rev=1061&view=rev Author: rvos Date: 2012-02-14 20:40:34 +0000 (Tue, 14 Feb 2012) Log Message: ----------- The colspan number should match the number of preceding display:column elements, otherwise an unsightly misalignment between the "check all/uncheck/invert" buttons and the rest of the table occurs. Modified Paths: -------------- trunk/treebase-web/src/main/webapp/WEB-INF/pages/search/studyList.jsp Modified: trunk/treebase-web/src/main/webapp/WEB-INF/pages/search/studyList.jsp =================================================================== --- trunk/treebase-web/src/main/webapp/WEB-INF/pages/search/studyList.jsp 2012-02-06 21:54:45 UTC (rev 1060) +++ trunk/treebase-web/src/main/webapp/WEB-INF/pages/search/studyList.jsp 2012-02-14 20:40:34 UTC (rev 1061) @@ -101,7 +101,8 @@ <display:footer> <tr> <!-- this id is important, because we might add additional buttons here --> - <td colspan="7" align="center" id="buttonContainer"> + <!-- also, the colspan number should match the number of preceding display:column elements --> + <td colspan="9" align="center" id="buttonContainer"> <!-- insert additional controls here --> </td> </tr> This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |