I am working on an branch/ip manager system, and I have run into an
issue. In my application, I have a method that calls all branchs from my
database, I am returning the object as a query from my cfc. The display
for the data grid works perfectly, but I am having an issue populating
dynamically populating a combo box with the branch name.

Inside my results function, it should populate the combo box with the
names of the branchs. But it does not. Can someone give me a hand with
this.

Here is my current code.

// INTALIZE FUNCTIONS
         private function initComplete(){
             BranchManager_Display_Branch()
         }

// CALL DISPLAY BRANCH METHOD
         private function BranchManager_Display_Branch(){
             BranchManager.Display_Branch()
         }
// HANDLE DISPLAY BRANCH RESULTS
         private function
BranchManager_Display_Branch_Result(result):void{
             branchDG.dataProvider = result;
             branchID.dataProvider = result.FLD_BRANCH_NAME as
ArrayCollection;
         }
// HANDLE DISPLAY BRANCH FAULT
         private function
BranchManager_Display_Branch_Fault(event:FaultEvent):void{
             Alert.show("Test Error","Program Error")
         }







--
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