Skip to content

Instantly share code, notes, and snippets.

@newtriks
Created June 13, 2011 11:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save newtriks/1022651 to your computer and use it in GitHub Desktop.
Save newtriks/1022651 to your computer and use it in GitHub Desktop.
SearchView MXML component used by ASUnit4 test example
<?xml version="1.0"?>
<s:Group xmlns:s="library://ns.adobe.com/flex/spark"
xmlns:fx="http://ns.adobe.com/mxml/2009">
<fx:Metadata>
[Event(name='submitSearchEvent',type='flash.events.Event')]
</fx:Metadata>
<s:layout>
<s:HorizontalLayout paddingLeft="10"
paddingRight="10"
paddingBottom="10"
paddingTop="10"/>
</s:layout>
<fx:Script><![CDATA[
private function submit_btn_clickHandler(event:MouseEvent):void
{
dispatchEvent(new Event('submitSearchEvent'));
}
]]></fx:Script>
<s:TextInput id="searchRequest_txt" width="200"/>
<s:Button id="submit_btn" label="Search" click="submit_btn_clickHandler(event)"/>
</s:Group>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment