You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xap-commits@incubator.apache.org by mt...@apache.org on 2006/08/06 19:13:44 UTC

svn commit: r429178 - in /incubator/xap/trunk/WebContent/examples/dojo: datePicker.html datePickerHandler.js

Author: mturyn
Date: Sun Aug  6 12:13:44 2006
New Revision: 429178

URL: http://svn.apache.org/viewvc?rev=429178&view=rev
Log:
Made a bit easier to read.

Modified:
    incubator/xap/trunk/WebContent/examples/dojo/datePicker.html
    incubator/xap/trunk/WebContent/examples/dojo/datePickerHandler.js

Modified: incubator/xap/trunk/WebContent/examples/dojo/datePicker.html
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/datePicker.html?rev=429178&r1=429177&r2=429178&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/datePicker.html (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/datePicker.html Sun Aug  6 12:13:44 2006
@@ -68,7 +68,7 @@
 		style="left:10%;top:10%"
 		cellpadding="20em" cellspacing="2px"
 		>
-		<tr><th width="30%">0.</th><th>1.</th></tr>
+		<tr><th width="60%">0.</th><th>1.</th></tr>
 		<tr><td>This is put here by plain old Dojo.<div  id="dp"/><td/><td></td></tr>
 		<tr><td id="xapStat"></td>		
 			<td><div context="../../"  id="applicationHome"
@@ -76,7 +76,7 @@
 			</td>
 		</tr>
 		<tr><td>This DatePicker was put here via a xap application:<div  height="5em" id="targetNode" valign="top" align="left"/></div></td><td></td></tr>
-		<tr><td height="30px" bgColor="#FFFFee"><div id="displ">Pick a day.</div></td><td id="mouseOverDisplayer"/><td/></tr>
+		<tr><td height="30px" bgColor="#FFFFee"><div id="displ"><b>Pick a day....</b></div></td><td id="mouseOverDisplayer"/><td/></tr>
 	</table>
 
 

Modified: incubator/xap/trunk/WebContent/examples/dojo/datePickerHandler.js
URL: http://svn.apache.org/viewvc/incubator/xap/trunk/WebContent/examples/dojo/datePickerHandler.js?rev=429178&r1=429177&r2=429178&view=diff
==============================================================================
--- incubator/xap/trunk/WebContent/examples/dojo/datePickerHandler.js (original)
+++ incubator/xap/trunk/WebContent/examples/dojo/datePickerHandler.js Sun Aug  6 12:13:44 2006
@@ -16,7 +16,8 @@
 		
 		var dp_0 = clientEvent.session.getUiDocumentHandler().getHandlerForElement(dpEl );	
 	
-		document.getElementById("displ").innerHTML=dp_0.getPeer().date ;
+		document.getElementById("displ").innerHTML=
+						"<b>"+dp_0.getPeer().date+"</b>" ;
 }