The following example demonstrates how you can enable/disable draggable columns in a Flex DataGrid control using the DataGrid class’s draggableColumns property, as well as toggling specific column’s dragability using the DataGridColumn class’s draggable property.
Full code after the jump.
Continue reading ‘Toggling draggable columns in a Flex DataGrid control’
The following example demonstrates how you can enable/disable resizable columns in a Flex DataGrid control using the DataGrid class’s resizableColumns property, as well as toggling specific column’s resizability using the DataGridColumn class’s resizable property.
Full code after the jump.
Continue reading ‘Toggling resizable columns in a Flex DataGrid control’
The following example shows how you can easily create a drop shadow effect on a TextInput control using the dropShadowEnabled style (instead of creating a DropShadowFilter), as well as control the drop shadow effect’s color, direction, and distance (using the dropShadowColor, shadowDirection, and shadowDistance styles, respectively).
Full code after the jump.
Continue reading ‘Creating drop shadows on the Flex TextInput control’