1

itemDestructionPolicy2つの可能な値があります:neverauto

値を書き込む代わりに、値をパラメーターにバインドしようとしましたが、次のエラーが発生しました。

itemDestructionPolicy属性の値が無効です。

コード例:

package com.hp.esb.skin.light.dropdownlist 
{
    public class ItemDestructionPolicy 
    {
        public static const NEVER:String = "never";
        public static const AUTO:String = "auto";
    }
}

DropDownListSkin:

<s:PopUpAnchor id="popUp" displayPopUp.normal="false" displayPopUp.open="true" includeIn="open"
               itemDestructionPolicy="{hostComponent.destructionPolicy}"
               popUpPosition="below" popUpWidthMatchesAnchorWidth="true">

ドロップダウンリスト:

[Bindable]
public var destructionPolicy:String = ItemDestructionPolicy.NEVER;
4

1 に答える 1

1

itemDestructionPolicyこれはコンパイル時の属性であるため、バインドすることはできません。

于 2012-09-05T12:56:03.960 に答える