You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by id...@apache.org on 2008/01/28 11:12:26 UTC

svn commit: r615842 - /myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml

Author: idus
Date: Mon Jan 28 02:12:22 2008
New Revision: 615842

URL: http://svn.apache.org/viewvc?rev=615842&view=rev
Log:
fixed slider code: missing update due to introduction of TobagoResponseWriter

Modified:
    myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml

Modified: myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml
URL: http://svn.apache.org/viewvc/myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml?rev=615842&r1=615841&r2=615842&view=diff
==============================================================================
--- myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml (original)
+++ myfaces/tobago/trunk/src/docbook/tobago-tutorial.xml Mon Jan 28 02:12:22 2008
@@ -1149,7 +1149,7 @@
     writer.writeNameAttribute(inputIdAndName);
     writer.writeIdAttribute(inputIdAndName);
     if (currentValue != null) {
-      writer.writeAttribute(HtmlAttributes.VALUE, currentValue, null);
+      writer.writeAttribute(HtmlAttributes.VALUE, currentValue, false);
     }
     writer.writeAttribute(HtmlAttributes.READONLY, readonly);
     writer.writeAttribute(HtmlAttributes.DISABLED, disabled);