Packagecom.flexicious.controls.interfaces.databindings
Interfacepublic interface IDataBoundControl extends flash.events.IEventDispatcher

Generic interface for databinding, implemented by all databound controls.



Public Properties
 PropertyDefined By
  bindingMode : String
ONE_WAY or TWO_WAY binding.
IDataBoundControl
  bindingProperty : String
Property of the bindingSource to bind to.
IDataBoundControl
  bindingSource : Object
Object to bind to.
IDataBoundControl
Public Methods
 MethodDefined By
  
IDataBoundControl
Property Detail
bindingModeproperty
bindingMode:String

ONE_WAY or TWO_WAY binding.


Implementation
    public function get bindingMode():String
    public function set bindingMode(value:String):void
bindingPropertyproperty 
bindingProperty:String

Property of the bindingSource to bind to. E.g. when a textbox binds to user's first name, the bindingProperty is firstName


Implementation
    public function get bindingProperty():String
    public function set bindingProperty(value:String):void
bindingSourceproperty 
bindingSource:Object

Object to bind to. E.g. when a textbox binds to user's first name, the binding source is the user


Implementation
    public function get bindingSource():Object
    public function set bindingSource(value:Object):void
Method Detail
setSourceFromControl()method
public function setSourceFromControl():void