Archives

Viewing by month: July 2005

Jul
24

Trio Motor Flash Remoting Sample Application

10 comments Posted by: Nahuel

Trio Motor

When the Flash Remoting components were rewritten in ActionScript 2.0, Mike Kollen and I wrote an article for the Macromedia Developer Center that explained how to build the work order status widget. That small widget alone was worth a whole article. We had, however, other 2 articles planned that showed other features of the application. We actually re-built the whole Trio Motor application using the newer components and the new Flash Remoting API. For simplicity, the original ColdFusion components were kept, with simply minor modifications.

read more Category: ColdFusion | Flash | Flash Remoting |
Jul
22

Binding checkboxes in flash forms

38 comments Posted by: Laura

If you ever tried to bind a checkbox in a flash form, your experience may have been something like this:

  • Tried using the bind attribute: bind="{ myField.selected}" and didn't see anything happening to the checkbox.
  • Tried using the bind syntax in the checked attribute: checked="{myField.selected}" or similar, only to get a ColdFusion error message: “Attribute validation error for tag CFINPUT. The value of the attribute CHECKED is invalid…”
  • Finally gave up and added the action to the onchange attribute of the field you wanted to bind to:
    onchange="myCheckbox.selected= myField.selected"
read more Category: CFForm | ColdFusion |
Jul
08

Filtering a cfgrid as you type -revisited-

49 comments Posted by: Nahuel

Editable Grid
Some time ago I made a post where I showed how to filter a cfgrid by typing in a input field. I received a lot of comments requesting to do the same but using an editable cfgrid. The result in this code:

read more Category: CFForm | ColdFusion |
Jul
04

CF Presenter source code

26 comments Posted by: Nahuel

We've finally taken some time to finish this project. Here is how the admin looks like:

CF Presenter Admin

read more Category: CFForm | ColdFusion |