Posts Tagged ‘flex’

January 16, 2009 0

FrameworkQuest 2008 : Introduction

By in flex, framework

I am thankful to Tony Hillerson for writing this post. please find the original post here print listen FrameworkQuest 2008: Introduction FrameworkQuest 2008 Part 2: Get Control with Cairngorm FrameworkQuest 2008 Part 3: Agnostic Views with PureMVC FrameworkQuest 2008 Part 4: IoC With Swiz FrameworkQuest 2008 Part 5: Mate, the Pure MXML Framework FrameworkQuest 2008 [...]

Tags: ,

January 16, 2009 0

How to Skin The Tabs in a TabNavigator Container

By in flex

TabNavigator containers come with a handful of styles that allow you to customize the appearance of the tabs: tabStyleName Name of CSS style declaration that specifies styles for the tabs. The default value is undefined. firstTabStyleName Name of CSS style declaration that specifies styles for the first tab. If this is unspecified, the default value [...]

Tags: , ,

December 4, 2008 0

Multi Language-Support in flex

By in flex

Make flexible multilanguage applications independent of number of included languages without changing client-side source code when new language is added. Create component which will receive data for numerous of languages and make data available trough keyword from every place in the application. On server side you can use file that contains data for different language [...]

Tags: ,

October 16, 2008 8

Printing dataGrid in Flex

By in flex

There are very few resources on the web about printing in Flex. Adobe LiveDocs is an excellent on-line reference for Flex. I thought of sharing my experience and the way I successfully printed the dataGrid in Flex. Example below: shows how to call a function to print a datagrid public function printDataGrid() : void { [...]

Tags: , , ,

October 15, 2008 0

Flex dataGrid default column sort

By in flex, Usability

The below example  gives you a hook to sort a  particular column in a datagrid without user input. One can use the below function where ever a datagrid has to have a default sort order on its column(s).  Note : This works with flex 2 datagrid and not with Advanced datagrid in Moxie. The dataGridDefaultSort [...]

Tags: , , , ,