Perhaps you could achive it using this kind of itemRenderer and implement the
logic that fits your needs depending on the value of the event.target
property:

HTH,
Olaf

<?xml version="1.0" encoding="utf-8"?>
<s:ItemRenderer xmlns:fx="http://ns.adobe.com/mxml/2009"; 
                                xmlns:s="library://ns.adobe.com/flex/spark" 
                                xmlns:mx="library://ns.adobe.com/flex/mx" 
                                autoDrawBackground="true">
        
        <fx:Script>
                
        </fx:Script>
        
        <s:Group width="100%" click="onClick(event)">
                <s:layout>
                        <s:HorizontalLayout />
                </s:layout>
                <s:CheckBox/>   
        </s:Group>

        
</s:ItemRenderer>



--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Chain-of-events-when-checkbox-is-in-List-tp12581p12598.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to