You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@flex.apache.org by "Cyrill Zadra (JIRA)" <ji...@apache.org> on 2013/04/13 19:50:15 UTC

[jira] [Updated] (FLEX-33120) Please check support for ExactValue initializer

     [ https://issues.apache.org/jira/browse/FLEX-33120?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Cyrill Zadra updated FLEX-33120:
--------------------------------

    Attachment: screenshot-1.jpg

Patched develop branch with exactValue.patch and it seems to return a ExactValueExpression instead of the String.
                
> Please check support for ExactValue initializer
> -----------------------------------------------
>
>                 Key: FLEX-33120
>                 URL: https://issues.apache.org/jira/browse/FLEX-33120
>             Project: Apache Flex
>          Issue Type: Improvement
>            Reporter: Alex Harui
>            Priority: Minor
>              Labels: easyfix
>         Attachments: exactValue.patch, screenshot-1.jpg
>
>
> I've done my own improvement for MXML to support any values for property initializer WITHOUT bindings, for example:
> Was:
> <TextField xmlns="flash.text.*" autoSize="{TextFieldAutoSize.CENTER}" />
> is generated into:
> private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
> {
>     var temp : flash.text.TextField = new flash.text.TextField();
>     _MyOwnFlexFrameworkTest_TextField1 = temp;
>     mx.binding.BindingManager.executeBindings(this, "_MyOwnFlexFrameworkTest_TextField1", _MyOwnFlexFrameworkTest_TextField1);
>     return temp;
> }
> //  binding mgmt
>     private function _MyOwnFlexFrameworkTest_bindingsSetup():Array
>     {
>         var result:Array = [];
>         result[0] = new mx.binding.Binding(this,
>             function():String
>             {
>                 var result:* = (TextFieldAutoSize.CENTER);
>                 return (result == undefined ? null : String(result));
>             },
>             null,
>             "_MyOwnFlexFrameworkTest_TextField1.autoSize"
>             );
>         return result;
>     }
> now:
> <TextField xmlns="flash.text.*" autoSize="${TextFieldAutoSize.CENTER}" />
> give us such result:
> private function _MyOwnFlexFrameworkTest_TextField1_i() : flash.text.TextField
> {
>     var temp : flash.text.TextField = new flash.text.TextField();
>     temp.autoSize = TextFieldAutoSize.CENTER;
>     _MyOwnFlexFrameworkTest_TextField1 = temp;
>     mx.binding.BindingManager.executeBindings(this, "_MyOwnFlexFrameworkTest_TextField1", _MyOwnFlexFrameworkTest_TextField1);
>     return temp;
> }
> this implementation is similar to twoWay bindings and written in the same way.
> btw, sorry for my English, I'm Russian.
> Thanks

--
This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators
For more information on JIRA, see: http://www.atlassian.com/software/jira