0

如果我想检查父节点复选框意味着下面的子节点复选框将选择自动。

这是我的代码:

<fx:Script>
    <![CDATA[
        private function init():void    {
            httpTree.send();

        }

    ]]>
</fx:Script>
<fx:Declarations>
    <s:HTTPService id="httpTree" url="Assets/World.xml"  
                   resultFormat="e4x" useProxy="false" />
</fx:Declarations>
<mx:Tree dataProvider="{httpTree.lastResult.department}"
         id="treeTree" labelField="@name"   
         itemRenderer="com.ItemRenderForTree"  width="160" height="200" />

项目渲染器文件

<fx:Script>
    <![CDATA[
        protected function checkboxSelectHandler(event:Event):void
        {

        }
    ]]>
</fx:Script>


<s:states>
    <s:State name="normal" />            
    <s:State name="hovered" />
    <s:State name="selected" />
</s:states>
<s:HGroup left="0" right="0" top="0" bottom="0" verticalAlign="middle">
    <s:Rect id="indentationSpacer" width="{treeListData.indent}" percentHeight="100" alpha="0">
        <s:fill>
            <s:SolidColor color="0xFFFFFF" />
        </s:fill>
    </s:Rect>
    <s:Group id="disclosureGroup">
        <s:BitmapImage source="{treeListData.disclosureIcon}" visible="{treeListData.hasChildren}" />
    </s:Group>
    <s:BitmapImage source="{treeListData.icon}" />
    <s:CheckBox change="checkboxSelectHandler(event)" />
    <s:Label id="labelField" text="{treeListData.label}" paddingTop="2"/>
</s:HGroup>

我想要这样

任何人都可以帮助谢谢....

4

2 回答 2

0

使用 tree dataDescriptor 访问被点击父节点的子节点。也许这会有所帮助?您的三个数据在数据模型中是否具有选定的属性?

于 2011-08-01T10:41:07.037 回答
0

你正在寻找我一直称之为薛定谔复选框的东西。这是一段相同的代码,包括一个工作演示和 adobe 上复选框的 PNG 资源。 薛定谔复选框

于 2011-08-01T11:54:07.847 回答