I just thought I would give another example of this behavior.  In the 
following code you can select any of the items in the tilelist until you 
click the button.  Once you click the button you can only select the 
items in the tilelist that have changed, all of the others become 
non-functioning.  If I am doing something wrong I would love to know.  
Right now I think this a bug in Flex.  Thanks.

-Ethan

--------------------
<?xml version="1.0"?>
<mx:Application xmlns:mx="http://www.adobe.com/2006/mxml"; 
initialize="init();">
    <mx:Script>
        <![CDATA[
            [Bindable]
            public var boundObject:XML =
                <object>
                    <item>{new Date().milliseconds}</item>
                    <item>2</item>
                    <item>3</item>
                    <item>4</item>
                </object>;
               
            private function handleClick():void{
                var now:String = new Date().day.toString();
                boundObject        =        <object>
                    <item>{new Date().milliseconds}</item>
                    <item>5</item>
                    <item>3</item>
                    <item>7</item>
                </object>;
            }
        ]]>
    </mx:Script>
    <mx:TileList id="tl" dataProvider="{boundObject.item}"/>
    <mx:Button id="testButton" click="handleClick()" />
</mx:Application>



--
Flexcoders Mailing List
FAQ: http://groups.yahoo.com/group/flexcoders/files/flexcodersFAQ.txt
Search Archives: http://www.mail-archive.com/flexcoders%40yahoogroups.com 
Yahoo! Groups Links

<*> To visit your group on the web, go to:
    http://groups.yahoo.com/group/flexcoders/

<*> To unsubscribe from this group, send an email to:
    [EMAIL PROTECTED]

<*> Your use of Yahoo! Groups is subject to:
    http://docs.yahoo.com/info/terms/
 


Reply via email to