I was wondering if theres a way to pass which radio button is chosen
when passing it through httpsservice, currently i have to specify an
ID for each button then pass that but I'd like to handle one parameter
being passed.



<mx:HTTPService ....>
        <mx:request xmlns="">
                <rmvpaymentdate>
                        {rmvpaymentdate.text}
                </rmvpaymentdate>
                <payment_type>
                        {rmvpayments_searchtype_group.??}
                </payment_type>
                
        </mx:request>
</mx:HTTPService>




<mx:RadioButtonGroup id="rmvpayments_searchtype_group"/>
                                                <mx:RadioButton  x="375" y="12" 
label="Vehicles"
groupName="rmvpayments_searchtype"/>
                                                <mx:RadioButton  x="450" y="12" 
label="Motorcycles"
groupName="rmvpayments_searchtype"/>
                                                <mx:RadioButton  x="540" y="12" 
label="Both"
groupName="rmvpayments_searchtype" selected="true"/>

Reply via email to