-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSearchResultDataGroup.as
More file actions
33 lines (29 loc) · 1.1 KB
/
SearchResultDataGroup.as
File metadata and controls
33 lines (29 loc) · 1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
////////////////////////////////////////////////////////////////////////////////
//
// Copyright (c) 2010 ESRI
//
// All rights reserved under the copyright laws of the United States.
// You may freely redistribute and use this software, with or
// without modification, provided you include the original copyright
// and use restrictions. See use restrictions in the file:
// <install location>/License.txt
//
////////////////////////////////////////////////////////////////////////////////
package widgets.eSearch
{
import mx.core.ClassFactory;
import spark.components.DataGroup;
// these events bubble up from the SearchResultItemRenderer
[Event(name="searchResultClick", type="flash.events.Event")]
[Event(name="searchResultMouseOver", type="flash.events.Event")]
[Event(name="searchResultMouseOut", type="flash.events.Event")]
[Event(name="searchResultRelateClick", type="flash.events.Event")]
public class SearchResultDataGroup extends DataGroup
{
public function SearchResultDataGroup()
{
super();
this.itemRenderer = new ClassFactory(SearchResultItemRenderer);
}
}
}