Archives

Viewing by category: Flash Remoting (18 entries)

Aug
12

Custom CFTree icons

25 comments Posted by: Laura

Custom icons in cftreeHave you ever wondered if it was possible to change the folder icons in the Flash version of cftree? The answer is yes, with a little of workaround.

This example will show you how to change the opened/closed folder icon, the leaf icon, the icon of a specific node, and the default triangles that open and close nodes. Because we need to set the default values before the data is loaded, we cannot change the icons of an already loaded cftee, unless we change each of the nodes one by one.

read more Category: CFForm | ColdFusion | Flash Remoting |
Jul
30

MXNA Reader built with CFForms

81 comments Posted by: Nahuel

We made a Reader for MXNA in ColdFusion using only Flash Forms. But wait, it's not only an MXNA Reader, you can also read Full As A Goog :)

You can jump to see the application or continue reading the details. (A screen shot in case your screen resolution is less than 1024x768) Launch MXNA Reader

read more Category: CFForm | ColdFusion | Flash Remoting |
Jul
29

CFTree populated with Flash remoting and XML

49 comments Posted by: Laura

As part of these series "How to populate a cf[…] with Remoting", I wanted to show how to bring data into a cftree. This is the easiest way, but it has some limitations: your xml data has to have a label attribute and the tree is first closed when it loads. If you want to get around those, you will have to do more work with the data returned from the server (I may do it if I have time :)).

read more Category: CFForm | ColdFusion | Flash Remoting |
Jul
29

How to populate a cfselect with Flash Remoting

77 comments Posted by: Laura

Just because there are few tricky issues when populating a cfselect with Flash Remoting, I made this simple example. There are two ways, one requires our query to contain the columns “data” and “label”, in which case, when we receive the result, we do the same as the cfgrid example:

read more Category: CFForm | ColdFusion | Flash Remoting |
Jul
29

Populating a cfgrid with Flash Remoting

147 comments Posted by: Laura

As a follow up of my last post, I made an example on how to populate a cfgrid with Flash Remoting.
The basic difference is that now the ColdFusion component returns a query instead of a string. The important part in the ActionScript code is how we set the data to the datagrid. To show the effect, I create a cfgrid and populate it with an empty query, so that when I call the component, I can see the data loaded.

read more Category: CFForm | ColdFusion | Flash Remoting |