FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
RelFinder/src/ExampleBox.mxml at master · VisualDataWeb/RelFinder · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
This repository was archived by the owner on Jan 13, 2025. It is now read-only.
VisualDataWeb
/
RelFinder
Public archive
Notifications
You must be signed in to change notification settings
Fork
8
Star
21
Code
Issues
7
Pull requests
0
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
RelFinder
/
src
/
ExampleBox.mxml
Copy path
More file actions
More file actions
Latest commit
History
History
History
38 lines (26 loc) · 1.05 KB
Breadcrumbs
RelFinder
/
src
/
ExampleBox.mxml
Copy path
File metadata and controls
38 lines (26 loc) · 1.05 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
34
35
36
37
38
<
?xm
l versio
n
=
"1.
0
" encodin
g
=
"utf-
8
"?>
<
mx
:
VBox
xmlns
:
mx
=
"
http://www.adobe.com/2006/mxml
"
paddingLeft
=
"
6
"
paddingRight
=
"
6
"
paddingBottom
=
"
6
"
>
<
mx
:
Metadata
>
[Event(name="loadExample")]
</
mx
:
Metadata
>
<
mx
:
Script
>
<![CDATA[
import mx.collections.ArrayCollection;
import mx.rpc.events.ResultEvent;
import mx.utils.ObjectUtil;
[Bindable]
public var examples:ArrayCollection = new ArrayCollection();
public function loadExample():void {
dispatchEvent(new ResultEvent("loadExample", true, true, exampleList.selectedItem));
}
]]>
</
mx
:
Script
>
<
mx
:
HBox
width
=
"
100%
"
paddingLeft
=
"
0
"
paddingRight
=
"
0
"
>
<
mx
:
Spacer
width
=
"
100%
"
/>
<
mx
:
Button
id
=
"
loadButton
"
label
=
"
load
"
click
=
"
loadExample()
"
height
=
"
20
"
paddingLeft
=
"
6
"
paddingRight
=
"
6
"
/>
</
mx
:
HBox
>
<
mx
:
List
id
=
"
exampleList
"
width
=
"
100%
"
height
=
"
100%
"
dataProvider=
"
{examples}
"
itemRenderer
=
"
ExampleListRenderer
"
variableRowHeight=
"
true
"
doubleClickEnabled=
"
true
"
doubleClick
=
"
loadExample()
"
/>
</
mx
:
VBox
>
Back
|
FazBrowse Home
|
New Git URL