Tagged Questions

2
votes
1answer
49 views

Does a base class with the metadata [Bindable] keyword automatically extends EventDispatcher?

I'm encountering something a bit bizarre, but maybe someone else came across this before. I've got a base class, that doesn't extend anything. Let's call it... public class FooBar { //... } ...
2
votes
4answers
1k views

Flex 3 Binding problem

I have a custom ActionScript class: package EntityClasses { import mx.collections.ArrayCollection; [RemoteClass(alias="tkatva.tt.entities.CompanyInfo")] [Bindable] public class CompanyInfo { ...
2
votes
2answers
649 views

Using ASDoc with Bindable metatag and mxml

I am creating the documentation of my flex project using ASDoc and having some issues with the bindable metatag. ASDoc doesn't document public Bindable values unless the Bindable tag has an event ...
2
votes
3answers
233 views

JQuery: Is there a way to do Flex-style data bindings?

Several new UI/Query frameworks allow you to "bind" UI elements to data structures. When data in the structure is updated, the change propagates to the UI element, automatically. Some examples of this ...
2
votes
2answers
607 views

Some [Bindable] properties in Flex work, some don't

Problem solved, see below Question I'm working in Flex Builder 3 and I have two ActionScript 3 classes (ABC and XYZ) and a Flex MXML project (main.mxml). I have an instance of XYZ as a property of ...
1
vote
1answer
278 views

binding to arraycollection does not work

I am using flex SDK 3.5. I have model.as and in it i have an ArrayCollection (name it arr_mod) which is Bindable. From my mxml i link to this arr_mod in three places: 1) in DataGrid i set ...
0
votes
4answers
108 views

Listen to bindable property in bindable Arraycollection

I've got a bindable model class (lets call it myModel) with two properties, label and value. The value gets updated frequently, so it is marked as bindable. Works fine so far, the data is updated and ...
0
votes
1answer
29 views

Flex: binding tab labels to variables

I'm using a custom tabbar with the dataProvider being a viewstack and I'm trying to get the tab labels to update when data in the related container (in the viewstack) updates. The viewstack's ...
0
votes
1answer
304 views

Edit ArrayCollection through Item Renderer

I use a spark List with a custom item renderer and an ArrayCollection for dataProvider. The ItemRenderer looks something like <mx:TextInput id="txtValue1" text="{data.myFirstValue}"/> ...
0
votes
1answer
84 views

How Can I Make an MXML Variable Bindable in Flex 3

Is it possible to use the Bindable compiler setting when using mxml? I've got a string that I want to make bindable: <mx:String id="myString">My Text</mx:String> I could make it ...
0
votes
2answers
110 views

is binding simple a shortcut for addeventlistener

I never really understood the point of binding, beyond it being effectively shorthand for addeventlistener. is there more to it? am I missing something? thanks, dsdsdsdsd
0
votes
1answer
115 views

Flex Binding : Unexpected behaviour

I have noticed an unexpected behaviour with binding in Flex, my code is as follow : Application code <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="vertical" ...
0
votes
3answers
290 views

Flex watch bindable property other class

I'm creating an application using Flex 4. When the app is started, it reads a XML file and populate objects. The .send() call is asynchronous, so I would want to listen/watch to this populated object, ...
0
votes
2answers
290 views

ArrayCollection of data for label test in flex?

My label text is not showing up after binding the arraycollection to the label text. Could I see an example of how to properly bind an arraycollection to a labels text?
0
votes
1answer
359 views

Bindable variable not updating with viewstack / swiz

I'm using the Swiz framework and I'm trying to update my viewstack's selectedIndex with a bindable property. It gets to my event handler which updates the bindable variable but the Main app file's ...
0
votes
1answer
527 views

Flex components property change event

I have a custom component on which I have bound an array collection to one of its proeprties: <comp:MyComp id="comp" prop="{images}" /> images is an arraycollection In the components' code I ...
0
votes
1answer
60 views

Ways to implement Flex [Bindable] in other languages

As you may know, ActionScript allows you to mark a variable as [Bindable], causing any changes to that variable to have immediate effect all over your application. Pretty neat. How would you ...
0
votes
1answer
417 views

Flex: make getter Bindable in an value object

I have an value object in Flex which looks like: [Bindable] public class MyVO { public var a:ArrayCollection; public var b:ArrayCollection; private var timeSort:Sort; public ...
0
votes
2answers
126 views

Getting the target when using bindable getter in flex

Hi I have the following files: model.as clint.mxml in clint.mxml I have the following line: <s:Group id='clint1' x="model.locationX"> ... in the model.as I have a getter: ...