Archive for June, 2008

Flex Custom Validation and ToolTips

Posted by Joel on June 10th, 2008 filed in Development, Flex

On my current project at work I have to do a lot of custom validation. I wanted to figure out the easiest way to alert the user of errors without creating annoying pop-ups. After messing around with the ToolTipManager for a little while, which will allow you to customize tool tips. I still hadn’t found [...]

Read More..>>

Passing objects from Flex to Coldfusion

Posted by Joel on June 5th, 2008 filed in Coldfusion, Development, Flex, Uncategorized

I couldn’t find anything online about how Coldfusion marshals a generic Flex object as an argument to a CFC method. So I decided to do a test. I created a generic object in Flex and then passed it through a remote call to coldfusion. Here is the actionscript for the object.

var genericObj:Object = new Object();
genericObj.testString1 [...]

Read More..>>