Questions tagged [bindable]

The Bindable annotation should be applied to any getter accessor method of an Observable class. Bindable will generate a field in the BR class to identify the field that has changed.

87 questions
0
votes
1 answer

flex bound visibility messes up during fx animations

working in flex 4 i have a variable: [Bindable] public var visibility:Boolean = true; these effects:
handler
  • 1,433
  • 11
  • 10
0
votes
1 answer

Flex components property change event

I have a custom component on which I have bound an array collection to one of its proeprties: images is an arraycollection In the components' code I would like to know which event to listen on everytime…
Tarek
  • 709
  • 2
  • 8
  • 17
0
votes
1 answer

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 implement this feature in your favourite programming…
0
votes
2 answers

Getting the target when using bindable getter in flex

I have the following files: model.as clint.mxml in clint.mxml I have the following line: ... in the model.as I have a getter: [bindable(event="locationXChanged")) function get locationX () : int { return…
Clint Feher
  • 51
  • 1
  • 2
0
votes
3 answers

Binding in Flex: How to make a variable automatically update when another variable is changed?

I know that it is possible to make a parameter of a component depend on a variable, provided that variable contains the [Bindable] tag. This means that updating the value of the Bindable variable automatically updates the component. Is it possible…
danxinnoble
  • 155
  • 1
  • 6
0
votes
2 answers

How to search a string within a flex datagrid dataProvider 4?

I tried using filterFunction not get any results, check out this example: [Bindable] public var SearchLoadlistOneDP:ArrayCollection; public function SearchList():void { SearchLoadlistOneDP.filterFunction = filter; …
user345824
0
votes
1 answer

Xamarin Forms Settings Plugin Bindable

I've been the really great Xamarin Cross Platform settings plugin https://components.xamarin.com/view/SettingsPlugin (the Nuget version of this in a PCL to be exact) It works well, but now using Xamarin forms i'd really like to be able to Bind to…
0
votes
0 answers

How is Function.bind.bind(Function.bind) usefull

I was just wrapping my head around this var bindable = Function.bind.bind(Function.bind); Now, I think the key to understanding this problem would be a scenario of how this is used. I can imagine its useful but I can't think of any example. Can…
Jeanluca Scaljeri
  • 19,619
  • 37
  • 147
  • 259
0
votes
2 answers

Cannot bind RemoteObject from BlazeDS

I'm using BlazeDS in Tomcat7 and Flex. I'm trying to use custom classes between the client and server. In as: package { [Bindable] [RemoteClass(alias="remoting.Product")] public class Product { public var name:String; public…
zavr
  • 1,695
  • 1
  • 14
  • 25
0
votes
1 answer

Bindable dynamic DataGrid Columns

Here is my ViewModel class: public class ColumnViewModel : ViewModelBase { private string bindingPropName; public string BindingPropName { get { return bindingPropName; } set { if (bindingPropName !=…
0
votes
1 answer

Data binding across multiple objects in Flex 3

I am new to Flex (got assigned to maintain an old project at work) and am having some trouble getting data binding to work correctly. I have a popup form class, AddOffer.mxml which uses a model AddOfferModel.as. On my popup form, I have the…
konakevin
  • 136
  • 1
  • 4
-1
votes
2 answers

Uncaught TypeError: binding.destroy is not a function in ExtJs 5

I am using Ext.util.StoreHolder mixin in my extjs 5.1 view.I found problem with Ext.destroy() method which throws error while destroying view having bindable mixin Ext.util.StoreHolder. I can not destroy that view, it giving me error Uncaught…
Abhijit Muke
  • 1,122
  • 1
  • 16
  • 41
1 2 3 4 5
6