pashminakazi opened a new issue #752: s:TextInput ValueCommit Function is not triggered URL: https://github.com/apache/royale-asjs/issues/752 Project Details are : https://paste.apache.org/cpo8y Test case is available on VDI. Go to Inventory from Select in Menu Go to Product -> Unit Rates from Setups in Menu File : com/dbz/modules/Common/dbzUnitRateSetup.mxml In Flex : When I type **5** into From Unit's TextInput `<s:TextInput x="129" y="18.5" width="94" height="22" valueCommit="txtFrom_valueCommitHandler(event)" enabled="true" id="txtFrom" tabIndex="6" restrict="0-9."/>` ``` protected function txtFrom_valueCommitHandler(event:FlexEvent):void { txtFrom.text = fmtNumber1.format(txtFrom.text); } <mx:NumberFormatter id="fmtNumber1" decimalSeparatorFrom="." decimalSeparatorTo="." precision="3" rounding="nearest" thousandsSeparatorFrom="," thousandsSeparatorTo="," useNegativeSign="true" useThousandsSeparator="true"/> ``` txtFrom_valueCommitHandler converts the value into 5.000  In Royale : txtFrom_valueCommitHandler is not called in Royale,valueCommit for spark's Textinput is not triggered
---------------------------------------------------------------- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. For queries about this service, please contact Infrastructure at: [email protected] With regards, Apache Git Services
