我只知道如何在Mxml的单选按钮中选择默认值,如下所示:
<ada:AdaRadioButton id="rbDDAACampNo"
selected="{Dto==null || Dto.field!='Y' || Dto.field==null}"
如何在codeBehind中应用此条件,如id.setSelected
或类似的方法?
谢谢
答案 0 :(得分:0)
您可以在AS
中执行以下操作//this is the handler of the creation complete of the component.
onCreationComplete(e:FlexEvent):void{
rbDDAACampNo.selected = Dto==null || Dto.field!='Y' || Dto.field==null;
}