Working With BlazeDS Beta 1

By John Wilker | Feb 17, 2008

Last week we successfully ported an AIR application from amfphp to BlazeDS. The code for this application was almost completely generated by a new generator we’re working on (coming soon!). With the announcement of BlazeDS, we kinda shelved our php g…

Toggling item roll over highlighting in the Flex Tree control

By John Wilker | Feb 6, 2008

The following example shows how you can toggle item roll over highlighting in the Tree control in Flex by setting the useRollOver style. Full code after the jump. View MXML <?xml version=”1.0″ encoding=”utf-8″?> <mx:Ap…

Dragging and dropping items in a Flex Tree control

By John Wilker | Feb 6, 2008

The following example shows you how you can reorder nodes in a Flex Tree control by setting the dragEnabled , dropEnabled , and dragMoveEnabled properties. Full code after the jump. View MXML <?xml version=”1.0″ encoding=”utf-…

Removing folder icons from the Flex Tree control

By John Wilker | Feb 6, 2008

The following example shows how you can remove the folder icons from the Tree control in Flex so that only the disclosure (arrow) icons and leaf icons are visible. The short answer, set the folderClosedIcon and folderOpenIcon styles to null …

Removing leaf icons from the Flex Tree control

By John Wilker | Feb 6, 2008

<mx:Style> Tree { defaultLeafIcon: ClassReference(null); }</mx:Style> ************************************* <?xml version=”1.0″ encoding=”utf-8″?><mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”lay…

FebDisabling item roll over highlighting in the Flex DataGrid control

By John Wilker | Feb 6, 2008

<?xml version=”1.0″ encoding=”utf-8″?><mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”layout=”vertical”verticalAlign=”middle”backgroundColor=”white”><mx:Script><![CDATA[import mx.events.ListEvent;import mx.controls.Al…

Using a DataGrid control as a pop up in the Flex PopUpButton control

By John Wilker | Feb 6, 2008

<?xml version=”1.0″ encoding=”utf-8″?><mx:Application xmlns:mx=”http://www.adobe.com/2006/mxml”layout=”vertical”verticalAlign=”top”backgroundColor=”white”><mx:Style>PopUpButton {popUpStyleName: myCustomPopUpStyleName;}.myCustomPopUpS…

© 2007 Flex 3