Archive for category Flex

RIAction.sg – First RIA conference in Singapore

RIAction (r?-?ak-sh?n) is a Rich Internet Application focused event that aims to provide developers in the region updates on the latest RIA trends. RIAction will covers RIA frameworks like Microsoft Silverlight, Adobe Flex / AIR, Javascript AJAX as well as Web APIs Platform like Google APIs.
Date :26th February 2009, 9am to 6pm
Where: Microsoft Auditorium
1 Marina Boulevard #22-01
One Marina Boulevard Singapore 018989
Nearest MRT : Raffles Place MRT

Register now!! >>

Check out the event video done up by shinchi(The event’s organiser)!!

Bookmark and Share

Tags: , , , ,

Updating a nested data object in DataGridColumn itemRenderer does not update DataGrid

If you are using a itemRenderer and updating the dataprovider of the DataGrid within the itemRenderer, you may have to force the DataGrid to update manually.

Read the rest of this entry »

Bookmark and Share

Tags: , ,

Editing Nested Data for Flex DataGrid

I needed to use a nested data object with a DataGrid. By default, the Flex (Moxie) DataGrid will not be able to display data in nested objects directly by using the dataField attribute in DataGridColumn.

An example of my nested object is as follows:

<persons>
    <boy>
        <name>TED</name>
    </boy>
        <name>TIM</name>
    <boy>
    </boy>
    <girl>
        <name>SUE</name>
    </girl>
    <girl>
        <name>ANN</name>
    </girl>
</persons>

Thank God, i found this article: Nested Data in Flex DataGrid by Extending DataGridColumn. I won’t explain how i use it here but you can go check it out there.

Here’s why i blogged about this. Well.. i needed to edit this nested data object. Setting “editable” to true did allow me to change the label but i could not commit the new value. The earlier mentioned blog article did gave me a hint of how to reference the actual field in the data object and i mixed it with the itemEditEnd event to commit the value manually.

Read the rest of this entry »

Bookmark and Share

Tags: , , , , ,

Are you holding back on your Flash Player version 10 upgrade?

Have you made the upgrade yet?

You can download the new version of Flash from here: http://www.adobe.com/go/getflashplayer.

Alright i am one of those who haven’t. I am looking forward to this upgrade though. With the new FileReference implementation, now i should be able to send Byte Data to my BlazeDS service. Yes FileUpload with BlazeDS should be possible now. I shall try it out this weekend and share.

Bookmark and Share

Tags: , , ,

Flex RSS Ticker

I have made a simple Flex news ticker(those marquee looking news often seen in CNN). It picks up content from an RSS feed. Check it out!

Read the rest of this entry »

Bookmark and Share