<?xml version="1.0" encoding="utf-8"?>
<mx:Application xmlns:mx="http://www.macromedia.com/2003/mxml"; backgroundColor="#EEEEEE">
<mx:Text>
<mx:text>
First select the list to update the inputs below.
Change the selected item using the keyboard.
See that the inputs are updated instantaneously.
Now using a quick mouse click, change the selection.
See that it takes about half second to update the inputs.
</mx:text>
</mx:Text>
<mx:List id="list" labelField="name">
<mx:dataProvider>
<mx:Array>
<mx:Object name="marcos" age="23"/>
<mx:Object name="Edu" age="21"/>
<mx:Object name="Ligia" age="19"/>
</mx:Array>
</mx:dataProvider>
</mx:List>
<mx:TextInput text="{list.selectedItem.name}"/>
<mx:TextInput text="{list.selectedItem.age}"/>
</mx:Application>


At 14:21 3/6/2004 +0100, you wrote:
Marco,

Sounds a bit strange; perhaps you can post a small bit of code
that demonstrates your problem ?

Best,

Steven

--
Steven Webster
Technical Director
iteration::two

-----Original Message-----
From: Marcos Neves [mailto:[EMAIL PROTECTED]
Sent: 03 June 2004 14:05
To: [email protected]
Subject: [flexcoders] List selection delay


Suppose a TextInput binded to a List. When I select an item from the list, the input is updated immediatly, right? wrong :(





Yahoo! Groups Links









Reply via email to