Hmm, I have it working fine that way. Oh well, how about trying passing the 
arguments this way:

private function doSearch():void {
    remoteService.getSearch(searchType.text, ss1.text, 
ButtonGroup.group.selectedValue, ...);
}

.....

<mx:RemoteObject
      id="remoteService"         destination="ColdFusion"
      source="vo.getSearch"
      showBusyCursor="true"
      fault="errorHandler(event)">
    <mx:method  name="getSearch" result="handleSearchResult(event)">
    <!-- drop arguments tags -->
</mx:RemoteObject>

.....
<mx:Button label="Search" click="doSearch()" >

----- Original Message ----- 
From: "Rob Parkhill" <[EMAIL PROTECTED]>
To: "flex" <[email protected]>
Sent: Friday, November 21, 2008 3:16 PM
Subject: Re: A Beginner Question


> Bob, well it seems as though that will work, however, when I save the
> project in FB I get the following warning:
> Data binding will not be able to detect assignments to 'group'
>
> Code:
> <rb>
> {ButtonGroup.group.selectedValue.toString()}
> </rb>
>
>
> <mx:RadioButton value="R" x="19" y="10" label="ReportID"
> groupName="searchTypeRadio" selected="true" id="ButtonGroup"/>
> <mx:RadioButton value="L" x="19" y="36" label="Lab ID"
> groupName="searchTypeRadio" />
> <mx:RadioButton value="PC" x="19" y="62" label="Product Class"
> groupName="searchTypeRadio" />
> <mx:RadioButton value="RS" x="19" y="88" label="Report Style"
> groupName="searchTypeRadio" />
> <mx:RadioButton value="C" x="19" y="114" label="Customer"
> groupName="searchTypeRadio" />
>
> If I preview the project anyways, it never ever loads... basically crashes 
> I
> guess...
>
> Thoughts?
>
> Rob
>
>
> 

~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to 
date
Get the Free Trial
http://ad.doubleclick.net/clk;207172674;29440083;f

Archive: http://www.houseoffusion.com/groups/flex/message.cfm/messageid:5572
Subscription: http://www.houseoffusion.com/groups/flex/subscribe.cfm
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.37

Reply via email to