I read about this http://www.thomasburleson.biz/2007/06/cairngorm_view_notifications.html#more which partially deals with a certain case, but: What to do when...
Make sure you implement the clone function (as per Flex recommendation). When catching an event and re-dispaching it, the framework tried to clone it before it...
Hello All, We have a large Cairngorm application that is very customizable. We've built our own containers for screens and have everything linked together for...
Hello, I'm struggling with figuring out how to "properly" add a glow effect to a newly added row to a data grid. Does anyone have any suggestions or examples...
I'm stumped on this one, I'm trying to get the Cairngorm plug-in to work on Eclipse 3.4.1 with the flex builder 3 plugin-in. I've installed the Cairngorm.swc...
I am fairly new to using Flex and the Cairngorm framework. In getting my current position, I completed a test-driven programming exercise using Cairngorm and...
You should try PureMVC, inmho its easier to do TDD with that framework. ... From: Errol Thompson <kiwiet@...> Subject: [cairngorm-documentation] To:...
In one delegate I have the following: private var __locator:ServiceLocator = new ServiceLocator.getInstance(); And it compiles just fine, and in fact this...
I'm running Flex 3 with Cairngorm 2.2.1. I get the following warnings in the debug console after refactoring my code to use Cairngorm (used Cairngen): warning:...
So, now that I've added an alert to the fault() function of the command file, I get the following ... but unsure why, this worked prior to refactoring to use...
It seems that the problem is in the server code. I'd check if __service.addContact_PHP(contact) gets called and debug on the server side... HTH, Claudiu ...
Per my other post, I am getting into the fault() routine of my AddContactCommand.as. When I run my ContactService.php file directly on the server, I get no ...
Found the final issue ... my RemoteClass alias binding in my AS VO included the full reverse DNS name, and my class mapping in index.php for Zend AMF did not. ...
Unfortunately, no, though I have had a couple ideas since then. If I ever implement any of them successfully I'll let you know and would appreciate the same. ...
I have an array collection that is a collection of ContactVO items. When I debug and look at the ArrayCollection, each item, [0], [1], etc is of type...
In my opinion this is a function of the Component and would not participate in the MVC aspect of your application. For that reason I would suggest that the...
I've encountered this many times, it is caused by Flash not able to make the connection with class information in the AMF or missing class information. By...
Thanks for the response. I actually already have this code in all of my VO's - and in fact this code was working without any issue prior to refactoring to use...
Well, I think I have everything done correctly ... in my AS VO I have the following: [RemoteClass(alias="com.myproject.vo.ContactVO")] And in my Zend AMF...
BTW, the "object" field inside the "ObjectProxy" items is of type com.myproject.vo.ContactVO ... so things *seem* to be ok there, right? ... RemoteClass ... ...
Evan you were right, there was an issue with my RemoteAlias ... I was using my fully qualified reverse DNS name for the VO, when I should have been using the...
Hello all, I updated the Cairngorm Diagram Explorer and the accompanying AddContact application to Cairngorm 2.2.1, and I'm wondering how to submit it to the...