You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pivot.apache.org by rw...@apache.org on 2013/01/02 22:23:09 UTC

svn commit: r1428058 - in /pivot/branches/2.0.x: ./ tutorials/www/spinners.xml

Author: rwhitcomb
Date: Wed Jan  2 21:23:08 2013
New Revision: 1428058

URL: http://svn.apache.org/viewvc?rev=1428058&view=rev
Log:
PIVOT-887: Tutorial example for using NumericSpinnerData doesn't match
what is actually required to make it work.

So, update the tutorial HTML source (spinners.xml) to match what the
actual BXML file is so users can see what really is required.

This is a merge of revision 1428056 from trunk to branches/2.0.x.

Modified:
    pivot/branches/2.0.x/   (props changed)
    pivot/branches/2.0.x/tutorials/www/spinners.xml

Propchange: pivot/branches/2.0.x/
------------------------------------------------------------------------------
  Merged /pivot/trunk:r1428056

Modified: pivot/branches/2.0.x/tutorials/www/spinners.xml
URL: http://svn.apache.org/viewvc/pivot/branches/2.0.x/tutorials/www/spinners.xml?rev=1428058&r1=1428057&r2=1428058&view=diff
==============================================================================
--- pivot/branches/2.0.x/tutorials/www/spinners.xml (original)
+++ pivot/branches/2.0.x/tutorials/www/spinners.xml Wed Jan  2 21:23:08 2013
@@ -74,7 +74,9 @@ limitations under the License.
                     <Spinner spinnerData="['One', 'Two', 'Three', 'Four', 'Five']"
                         circular="true" preferredWidth="80" selectedIndex="0"/>
                     <Spinner preferredWidth="40" selectedIndex="0">
-                        <content:NumericSpinnerData lowerBound="0" upperBound="9" increment="1"/>
+                        <spinnerData>
+                            <content:NumericSpinnerData lowerBound="0" upperBound="9" increment="1"/>
+                        </spinnerData>
                     </Spinner>
                 </BoxPane>
             </Window>