itemDestructionPolicy
2つの可能な値があります:never
とauto
値を書き込む代わりに、値をパラメーターにバインドしようとしましたが、次のエラーが発生しました。
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;