I am populating a datagrid with data from database using Zend Data Services, I 
then select to amend a line of the datagrid using a master detail form. One of 
the fields is an index to another table and thus I need to use a DropDownList 
how do I set the drop down list to what the current setting is so I can then 
present the form for change.

<mx:FormItem label="Name:">
<s:DropDownList width="200" id="dropDownList" 
creationComplete="dropDownList_creationCompleteHandler(event)" 
labelField="ProductName">
<s:AsyncListView list="{getAllDisp_product_nameResult.lastResult}"/>
</s:DropDownList>
</mx:FormItem>

This is how I believe I would read the data for the drop down list, how would I 
set it to default to a specific setting?

- Cryptopus

Reply via email to