Tag: Component

  • Toast on AIR for Android

    Here’s a component which behaves as a ‘Toast’ for AIR applications running on Android. The component can essentially be used across any Flex application, since it is an ActionScript class.

    For those of you who don’t know, Toast is the small transparent alert that pop’s up (and doesn’t block your UI) when u set an alarm on Android phones !

    Toast on AIR for Android

    In the pic above, the text ‘Enter Required Fields’ appears in a ‘Toast’

    (more…)

  • Flex – Paginated Datagrid

    Here is a small component i wrote for implementing a paginated Datagrid on flex.
    This component extends dataGrid, displaying only a set of records at a time, thereby organizing the entire collection into ‘pages’.
    This component arranges the collection specified under the ‘dataProvider’ attribute into ‘pages’.

    • Displays a footer at the bottom
    • Indicates currently displayed records
    • 2 navigation buttons (Previous, Next)

    (more…)