<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Formatting values in an FxNumericStepper control using a custom display format function in Flex Gumbo</title>
	<atom:link href="http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Mon, 13 Feb 2012 01:38:13 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Gabor</title>
		<link>http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/comment-page-1/#comment-8324</link>
		<dc:creator>Gabor</dc:creator>
		<pubDate>Tue, 14 Sep 2010 11:10:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/#comment-8324</guid>
		<description>sorry, I made a mistake copying the code. The stepSize should be 1000 not 10000.</description>
		<content:encoded><![CDATA[<p>sorry, I made a mistake copying the code. The stepSize should be 1000 not 10000.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Gabor</title>
		<link>http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/comment-page-1/#comment-8323</link>
		<dc:creator>Gabor</dc:creator>
		<pubDate>Tue, 14 Sep 2010 11:03:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/#comment-8323</guid>
		<description>Hi Peter, 
can you please tell me, why this example with thousands doesn&#039;t work?

Kind Regards

&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;s:Application xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot; 
			   xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot; 
			   xmlns:mx=&quot;library://ns.adobe.com/flex/mx&quot; minWidth=&quot;955&quot; minHeight=&quot;600&quot;&gt;
	&lt;fx:Script&gt;
		&lt;![CDATA[
			private function numericStepper_dispFmtFunc(value:Number):String {
			return numFormatter.format(value);
			}
			
		]]&gt;
	&lt;/fx:Script&gt;
		
	&lt;fx:Declarations&gt;
		&lt;mx:NumberFormatter id=&quot;numFormatter&quot; precision=&quot;2&quot; /&gt;		
	&lt;/fx:Declarations&gt;

	&lt;s:NumericStepper id=&quot;numericStepper&quot;
					  minimum=&quot;10000&quot;
					  maximum=&quot;20000&quot;
					  value=&quot;15000&quot;
					  stepSize=&quot;10000&quot;
					  valueFormatFunction=&quot;numericStepper_dispFmtFunc&quot; /&gt;

&lt;/s:Application&gt;</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
can you please tell me, why this example with thousands doesn&#8217;t work?</p>
<p>Kind Regards</p>
<p>&lt;?xml version=&#8221;1.0&#8243; encoding=&#8221;utf-8&#8243;?&gt;<br />
&lt;s:Application xmlns:fx=&#8221;http://ns.adobe.com/mxml/2009&#8243;<br />
			   xmlns:s=&#8221;library://ns.adobe.com/flex/spark&#8221;<br />
			   xmlns:mx=&#8221;library://ns.adobe.com/flex/mx&#8221; minWidth=&#8221;955&#8243; minHeight=&#8221;600&#8243;&gt;<br />
	&lt;fx:Script&gt;<br />
		&lt;![CDATA[<br />
			private function numericStepper_dispFmtFunc(value:Number):String {<br />
			return numFormatter.format(value);<br />
			}</p>
<p>		]]&gt;<br />
	&lt;/fx:Script&gt;</p>
<p>	&lt;fx:Declarations&gt;<br />
		&lt;mx:NumberFormatter id=&#8221;numFormatter&#8221; precision=&#8221;2&#8243; /&gt;<br />
	&lt;/fx:Declarations&gt;</p>
<p>	&lt;s:NumericStepper id=&#8221;numericStepper&#8221;<br />
					  minimum=&#8221;10000&#8243;<br />
					  maximum=&#8221;20000&#8243;<br />
					  value=&#8221;15000&#8243;<br />
					  stepSize=&#8221;10000&#8243;<br />
					  valueFormatFunction=&#8221;numericStepper_dispFmtFunc&#8221; /&gt;</p>
<p>&lt;/s:Application&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: JabbyPanda</title>
		<link>http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/comment-page-1/#comment-7860</link>
		<dc:creator>JabbyPanda</dc:creator>
		<pubDate>Fri, 04 Jun 2010 15:06:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/#comment-7860</guid>
		<description>FYI, &quot;displayFormatFunction&quot; is now renamed to &quot;valueFormatFunction&quot;  - this took me quite a while to find out.</description>
		<content:encoded><![CDATA[<p>FYI, &#8220;displayFormatFunction&#8221; is now renamed to &#8220;valueFormatFunction&#8221;  &#8211; this took me quite a while to find out.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: kelebashi</title>
		<link>http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/comment-page-1/#comment-4031</link>
		<dc:creator>kelebashi</dc:creator>
		<pubDate>Fri, 05 Dec 2008 09:21:41 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/12/04/formatting-values-in-an-fxnumericstepper-control-using-a-custom-display-format-function-in-flex-gumbo/#comment-4031</guid>
		<description>Strong Flex!</description>
		<content:encoded><![CDATA[<p>Strong Flex!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

