Hi,I'm not great with the query language and I'm trying to take the "Query result in table" sample code (http://help.arcgis.com/en/webapi/flex/samples/index.html#/Query_result_in_table/01nq0000005t000000/) and customize it for my data. I simply want to change the text input field to a dropdown box (combobox I think in mxml language). What I don't know how to change is the parameter in the Query tag to use my combobox instead of text input.This is what is there now (in the sample code): <esri:Query id="query"
outFields="[STATE_NAME,STATE_FIPS,SUB_REGION,STATE_ABBR,POP2000,POP2007]"
returnGeometry="false"
text="{stateName.text}"/>
</fx:Declarations>
<s:Panel title="Using Query tasks without maps">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:HGroup verticalAlign="middle">
<s:Label text="US state name: "/>
<s:TextInput id="stateName" text="Carolina"/>
<s:Button click="queryTask.execute(query);" label="Get Details"/>This is what I have but I don't know what to put instead of "text="{stateName.text}" so it associates with my combobox: <esri:Query id="query"
outFields="[PROJECT_NAME, PROJECT_DESCRIPTION, ACRES, HABITAT_DESCRIPTION, GPRA_CATEGORY, RESTORATION_TECHNIQUE, LEAD_PARTNER]"
returnGeometry="false"
objectids="*"/>
<s:RadioButtonGroup id="optiongroup"/>
</fx:Declarations>
<s:Panel title="NEP Project Information">
<s:layout>
<s:VerticalLayout/>
</s:layout>
<s:HGroup verticalAlign="middle">
<mx:FormItem label="Search for NEP Information">
<s:ComboBox id="nepName" dataProvider="{NEP_NAME}" prompt="Select NEP" enabled="true"/>
</mx:FormItem>Thanks,Alison