You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tapestry.apache.org by an...@apache.org on 2006/12/29 15:08:00 UTC

svn commit: r491011 - in /tapestry/tapestry4/trunk/src/site/xdoc/usersguide: properties.xml upgrade4.0.xml

Author: andyhot
Date: Fri Dec 29 06:07:59 2006
New Revision: 491011

URL: http://svn.apache.org/viewvc?view=rev&rev=491011
Log:
small doc fix and addition

Modified:
    tapestry/tapestry4/trunk/src/site/xdoc/usersguide/properties.xml
    tapestry/tapestry4/trunk/src/site/xdoc/usersguide/upgrade4.0.xml

Modified: tapestry/tapestry4/trunk/src/site/xdoc/usersguide/properties.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/xdoc/usersguide/properties.xml?view=diff&rev=491011&r1=491010&r2=491011
==============================================================================
--- tapestry/tapestry4/trunk/src/site/xdoc/usersguide/properties.xml (original)
+++ tapestry/tapestry4/trunk/src/site/xdoc/usersguide/properties.xml Fri Dec 29 06:07:59 2006
@@ -211,6 +211,20 @@
                     <td>ClassResolver</td>
                     <td>Object responsible for locating classes and classpath resources.</td>
                 </tr>
+                
+                <tr>
+                    <td>clientId</td>
+                    <td>
+                        <a
+                            href="../apidocs/org/apache/tapestry/IComponent.html">
+                            IComponent
+                        </a>
+                    </td>
+                    <td>String</td>
+                    <td>
+                        The component's client-side element id.
+                    </td>                    
+                </tr>                
 
                 <tr>
                     <td>componentMessagesSource</td>

Modified: tapestry/tapestry4/trunk/src/site/xdoc/usersguide/upgrade4.0.xml
URL: http://svn.apache.org/viewvc/tapestry/tapestry4/trunk/src/site/xdoc/usersguide/upgrade4.0.xml?view=diff&rev=491011&r1=491010&r2=491011
==============================================================================
--- tapestry/tapestry4/trunk/src/site/xdoc/usersguide/upgrade4.0.xml (original)
+++ tapestry/tapestry4/trunk/src/site/xdoc/usersguide/upgrade4.0.xml Fri Dec 29 06:07:59 2006
@@ -114,7 +114,7 @@
 <body>
 <script type="text/javascript">
 function setFocus() {
-    var inputField = ${componentObject};
+    var inputField = document.form.field;
     if (inputField.type != "hidden") {
         if (inputField.disabled != true) {
             inputField.focus();
@@ -143,7 +143,7 @@
 <body>
 <script type="text/javascript">
 function setFocus() {
-    var inputField = ${componentObject};
+    var inputField = document.form.field;
     if (inputField.type != "hidden") {
         if (inputField.disabled != true) {
             inputField.focus();