Don't like ads? PRO users don't see any ads ;-)
Guest

Untitled

By: a guest on Jun 30th, 2012  |  syntax: None  |  size: 0.59 KB  |  hits: 8  |  expires: Never
download  |  raw  |  embed  |  report abuse  |  print
Text below is selected. Please press Ctrl+C to copy to your clipboard. (⌘+C on Mac)
  1. Unable to generate initialization code within Repeater
  2. <mx:Repeater id="rep" dataProvider="{usersArray}">
  3.         <s:NavigatorContent width="100%" height="100%" label="{rep.currentItem.name}" >
  4.             <mx:Image x="10" y="10" source="{rep.currentItem.imagePath}" width="175" height="118"/>
  5.             <s:Label x="145" y="14" text="{rep.currentItem.name}"/>
  6.             <s:Button x="147" y="79" label="Edit User" width="79" height="22" click="currentState='AddUser'"/>
  7.             <s:Button x="231" y="79" label="Delete" width="56" height="22"/>
  8.         </s:NavigatorContent>
  9.     </mx:Repeater>