You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@royale.apache.org by serkan <se...@likyateknoloji.com> on 2020/04/03 17:35:55 UTC

Strange behavior of form item.

Hi Alex (or anybody interested in),

While using resource from locale, form layout behaves strange.

Here is the example, for the source :

<mx:FormItem id="id_userName" label="Kullanici Adi">
               <s:TextInput id="userName"/>
           </mx:FormItem>

display is :



when change to :

<mx:FormItem id="id_userName" 
label="{resourceManager.getString('messages', 'userName')}">
                <s:TextInput id="userName"/>
           </mx:FormItem>

display is :




Thanks,
Serkan



Re: Strange behavior of form item.

Posted by serkan <se...@likyateknoloji.com>.
created issue : https://github.com/apache/royale-asjs/issues/797

3.04.2020 20:35 tarihinde serkan yazdı:
> Hi Alex (or anybody interested in),
>
> While using resource from locale, form layout behaves strange.
>
> Here is the example, for the source :
>
> <mx:FormItem id="id_userName" label="Kullanici Adi">
>               <s:TextInput id="userName"/>
>           </mx:FormItem>
>
> display is :
>
>
>
> when change to :
>
> <mx:FormItem id="id_userName" 
> label="{resourceManager.getString('messages', 'userName')}">
>                <s:TextInput id="userName"/>
>           </mx:FormItem>
>
> display is :
>
>
>
>
> Thanks,
> Serkan
>
>