在 Flex 移动应用程序(或任何 Flex 4 应用程序)中 - 如何根据其他 2 个字段的内容启用/禁用按钮?
我在下面粘贴我非常简单的测试代码,它的问题是 Flash Builder 4.7 中的语法错误:The entity name must immediately follow the '&' in the entity reference.
- 这可能意味着&符号是一个特殊字符,但是如何解决这个(可能是频繁的)问题?
测试应用程序.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>
意见/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>