Guest User

Untitled

a guest
Jul 18th, 2018
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.68 KB | None | 0 0
  1. <mx:Canvas implements="mx.core.IDataRenderer, mx.core.IFactory"
  2. xmlns:popup="org.xyz.pqr.component.popup.*">
  3.  
  4. <fx:Binding source="selectedSupplier" destination="supplierPopup.selectedSupplier" twoWay="true"/>
  5.  
  6. <fx:Script>
  7. <![CDATA[
  8. // === Snipped === getData, setData etc.
  9. [Bindable]
  10. public var selectedSupplier:SupplierMaster;
  11. ]]>
  12. </fx:Script>
  13.  
  14. <popup:SupplierPopup id="supplierPopup"/>
  15.  
  16. </mx:Canvas>
  17.  
  18. <mx:PopUpButton id="commonPopupButton"
  19. openAlways="true"
  20. closeOnActivity="false"
  21. label="{popUpLabel}"
  22. popUp="{popUpView}"/>
Add Comment
Please, Sign In to add comment