Im struggling to find how to attach the property filterfunction to one of the
objects in my code.
The best place to attach the property would be, I think when the selection
is made

The dropdownlist creation and selection are shown below

eg 

                public function dropDownList_Mn_create(event:FlexEvent):void
                {

                        ddl_ModuleNamesResult.token  = 
modulesnamesService.getAllModules_names();
                        
                }


                public function 
dropDownList_Mn_change(event:IndexChangeEvent):void
                {
                        moduleID = dropDownList_moduleid.selectedItem.module_id;

                        if (moduleID > 0) { 
                                dropDownList_ulmid.enabled = true;
                        }       
                }

I dont know how or where to apply the filterfunction property,

can you advise.








--
View this message in context: 
http://apache-flex-users.2333346.n4.nabble.com/Filter-a-dropdown-list-tp5968p5982.html
Sent from the Apache Flex Users mailing list archive at Nabble.com.

Reply via email to