Author: gseitz
Date: Thu Sep 20 11:15:58 2007
New Revision: 577848
URL: http://svn.apache.org/viewvc?rev=577848&view=rev
Log:
WICKET-806: changed <td>s to <th> in the header in month/year selection mode
Modified:
wicket/trunk/jdk-1.4/wicket-datetime/src/main/java/org/apache/wicket/extensions/yui/calendar/wicket-date.js
Modified:
wicket/trunk/jdk-1.4/wicket-datetime/src/main/java/org/apache/wicket/extensions/yui/calendar/wicket-date.js
URL:
http://svn.apache.org/viewvc/wicket/trunk/jdk-1.4/wicket-datetime/src/main/java/org/apache/wicket/extensions/yui/calendar/wicket-date.js?rev=577848&r1=577847&r2=577848&view=diff
==============================================================================
---
wicket/trunk/jdk-1.4/wicket-datetime/src/main/java/org/apache/wicket/extensions/yui/calendar/wicket-date.js
(original)
+++
wicket/trunk/jdk-1.4/wicket-datetime/src/main/java/org/apache/wicket/extensions/yui/calendar/wicket-date.js
Thu Sep 20 11:15:58 2007
@@ -190,9 +190,9 @@
// generate year input and spinner buttons
selectHtml += "<table>";
- selectHtml += "<tr><td><a class='yearDown' id='" + yearDownId +
"'/></td>";
- selectHtml += "<td><input type='text' size='4' id='" +
yearInputId + "'/></td>";
- selectHtml += "<td><a class='yearUp' id='" + yearUpId +
"'/></td>";
+ selectHtml += "<tr><th><a class='yearDown' id='" + yearDownId +
"'/></th>";
+ selectHtml += "<th><input type='text' size='4' id='" +
yearInputId + "'/></th>";
+ selectHtml += "<th><a class='yearUp' id='" + yearUpId +
"'/></th>";
selectHtml += "</tr></table>";
return selectHtml;
}