Flexモバイルアプリ(または任意のFlex 4アプリケーション)の場合-他の2つのフィールドの内容に応じて、ボタンを有効/無効にするにはどうすればよいですか?
以下に非常に単純なテストコードを貼り付けています。問題はFlashBuilder4.7の構文エラーです。The entity name must immediately follow the '&' in the entity reference.
これはおそらくアンパサンドが特殊文字であることを意味しますが、この(おそらく頻繁な)問題を解決するにはどうすればよいですか?
TestApp.mxml:
<?xml version="1.0" encoding="utf-8"?>
<s:ViewNavigatorApplication
xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
firstView="views.Home"
applicationDPI="160">
</s:ViewNavigatorApplication>
views / Home.mxml:
<?xml version="1.0" encoding="utf-8"?>
<s:View xmlns:fx="http://ns.adobe.com/mxml/2009"
xmlns:s="library://ns.adobe.com/flex/spark"
title="How to enable Login button?">
<s:layout>
<s:VerticalLayout paddingTop="8"
horizontalAlign="center" gap="8" />
</s:layout>
<s:Label text="Username:" />
<s:TextInput id="_username" />
<s:Label text="Password:" />
<s:TextInput id="_password" />
<s:Button id="_login"
label="Login"
enabled="{_username.text.length > 0 && _password.text.length > 0}" />
</s:View>