Hi,
i think you can use a PopUpButton instead of a ComboBox.
Something like this:
<mx:PopUpButton label="Select an Item" width="235">
<mx:popUp>
<mx:DataGrid id="FilterDataGrid" dataProvider="{listData}">
<mx:columns>
<mx:DataGridColumn dataField="FIRSTNAME" headerText="First Name"/>
<mx:DataGridColumn dataField="LASTNAME" headerText="Last Name"/>
<mx:DataGridColumn dataField="REFERENCENUMBER" headerText="Reference No"/>
</mx:columns>
</mx:DataGrid>
</mx:popUp>
</mx:PopUpButton>
Check it out:
http://flexexamples.blogspot.com/2008/02/using-datagrid-control-as-pop-up-in.html
Regards,
Dario.
--
You received this message because you are subscribed to the Google Groups "Flex
India Community" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/flex_india?hl=en.