My favorites | Sign in
Project Logo
             
Details: Show all Hide all

Last 30 days

  • Nov 18, 2009
    Events (Learn about the Cairngorm extensions for events) Wiki page commented on by mr.void   -   aaaaaaaaaar udug addam
    aaaaaaaaaar udug addam
  • Nov 18, 2009
    Events (Learn about the Cairngorm extensions for events) Wiki page commented on by flexteamh   -   madda gudu raaaaaaaaaa
    madda gudu raaaaaaaaaa

Earlier this year

  • Oct 22, 2009
    FlexStore Wiki page commented on by gopal8060   -   TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.flexstore.view.products.browser::ProductCatalogPanel/animateShowProductDetails() sometime we get error when click on productthumbnail to get productdetail
    TypeError: Error #1009: Cannot access a property or method of a null object reference. at com.flexstore.view.products.browser::ProductCatalogPanel/animateShowProductDetails() sometime we get error when click on productthumbnail to get productdetail
  • Oct 08, 2009
    Delegates (Learn about the Cairngorm extensions for Delegates) Wiki page commented on by giles.peng   -   Any implementation details or documentation would be greatly appreciated. Thanks.
    Any implementation details or documentation would be greatly appreciated. Thanks.
  • Sep 08, 2009
    r97 (Added a stronger null check in prepareHandlers) committed by adamfla...@gmail.com   -   Added a stronger null check in prepareHandlers
    Added a stronger null check in prepareHandlers
  • Aug 31, 2009
    r96 (Removed dependency on Callbacks and changed access to a few ...) committed by adamfla...@gmail.com   -   Removed dependency on Callbacks and changed access to a few vars to protected.
    Removed dependency on Callbacks and changed access to a few vars to protected.
  • Aug 31, 2009
    issue 12 (ModuleControllers are not getting added as a subcontroller) changed by adamfla...@gmail.com   -   Fixed this is commit: [95]
    Status: Fixed
    Owner: adamflater
    Fixed this is commit: [95]
    Status: Fixed
    Owner: adamflater
  • Aug 31, 2009
    r95 (Fix for Issue 12: ModuleControllers are not getting added a...) committed by adamfla...@gmail.com   -   Fix for Issue 12 : ModuleControllers are not getting added as a subcontroller
    Fix for Issue 12 : ModuleControllers are not getting added as a subcontroller
  • Aug 11, 2009
    ServiceLocator (Learn about the Cairngorm extensions for Services) Wiki page commented on by diegoalberto   -   Waiting them =D
    Waiting them =D
  • Aug 11, 2009
    Delegates (Learn about the Cairngorm extensions for Delegates) Wiki page commented on by diegoalberto   -   Waiting them =D
    Waiting them =D
  • Aug 11, 2009
    Commands (Learn about the Cairngorm extensions for Commands) Wiki page commented on by diegoalberto   -   Waiting them =D
    Waiting them =D
  • Jul 26, 2009
    FlexStore Wiki page commented on by absolute.relativity   -   To fix filtering problem with triband video mentioned above: ProductXMLUtils.as product.triband = (it.triband == "true") ; product.camera = (it.camera == "true") ; product.video = (it.video == "true") ;
    To fix filtering problem with triband video mentioned above: ProductXMLUtils.as product.triband = (it.triband == "true") ; product.camera = (it.camera == "true") ; product.video = (it.video == "true") ;
  • May 14, 2009
    issue 17 (Delegate example calls notifyCallers() instead of notifyCall...) reported by j...@jonmodell.com   -   What steps will reproduce the problem? 1. Open the Delegates class in com.universalmind.cairngorm.business and/or the asdocs for the class 2. look at the last line of the onResults_doLogin function 3. notifyCallers(new ResultEvent(response)) What is the expected output? What do you see instead? there is no method called notifyCallers() (plural) use notifyCaller() instead What version of the product are you using? On what operating system? UM_Cairngorm 2.2.1 Please provide any additional information below. the example call to notifyCallers() made me think I was not working with the current version, but now I think this is just a typo.
    What steps will reproduce the problem? 1. Open the Delegates class in com.universalmind.cairngorm.business and/or the asdocs for the class 2. look at the last line of the onResults_doLogin function 3. notifyCallers(new ResultEvent(response)) What is the expected output? What do you see instead? there is no method called notifyCallers() (plural) use notifyCaller() instead What version of the product are you using? On what operating system? UM_Cairngorm 2.2.1 Please provide any additional information below. the example call to notifyCallers() made me think I was not working with the current version, but now I think this is just a typo.
  • Apr 09, 2009
    issue 16 (Unused param in EventGenerator.initialize()) commented on by alex.rosano   -   "why can't we pass this id value into the constructor?" To support instantiating via mxml.
    "why can't we pass this id value into the constructor?" To support instantiating via mxml.
  • Mar 06, 2009
    issue 5 (Method checkModuleType in FrontController) commented on by tsclausing   -   Submitting a patch. Compiled .swc + source files attached. 1) FrontController, line 122 CHANGE: if (subController is ModuleController) return false; TO: if (subController is ModuleController) return true; This will allow adding the sub-controller to proceed as expected. 2) ModuleController, line 90 CHANGE: for each (var eventID:String in commands) { TO: for (var eventID:String in commands) { This will grab the "key" from the dictionary instead of the "value".
    Submitting a patch. Compiled .swc + source files attached. 1) FrontController, line 122 CHANGE: if (subController is ModuleController) return false; TO: if (subController is ModuleController) return true; This will allow adding the sub-controller to proceed as expected. 2) ModuleController, line 90 CHANGE: for each (var eventID:String in commands) { TO: for (var eventID:String in commands) { This will grab the "key" from the dictionary instead of the "value".
  • Feb 12, 2009
    issue 5 (Method checkModuleType in FrontController) commented on by brandon.alexander   -   Any updated on this issue?
    Any updated on this issue?
  • Feb 12, 2009
    issue 12 (ModuleControllers are not getting added as a subcontroller) commented on by brandon.alexander   -   This is a duplicate of issue 5, this should be closed.
    This is a duplicate of issue 5, this should be closed.
  • Feb 03, 2009
    issue 16 (Unused param in EventGenerator.initialize()) reported by org.goog...@brightworks.com   -   What steps will reproduce the problem? 1. Look at EventGenerator.initialize() code 2. Note that first param - "document" - isn't used by the code public function initialized(document:Object, id:String):void { this.id = id; } Also, it would be great to get some clarification of how/when/why "id" is meant to be used. It gets passed out by onAnnounceDone() and onAnnounceFail(). Clearly the code using the EventGenerator can use this to check which EventGenerator has failed or finished, which makes sense. But why can't we pass this id value into the constructor? Why is it called initialized() rather than initialize()? It looks at though this is a not-completely-finished bit - and some clarification would be helpful. But please take this pickiness within context - I love these extensions, and appreciate the contribution! Douglas
    What steps will reproduce the problem? 1. Look at EventGenerator.initialize() code 2. Note that first param - "document" - isn't used by the code public function initialized(document:Object, id:String):void { this.id = id; } Also, it would be great to get some clarification of how/when/why "id" is meant to be used. It gets passed out by onAnnounceDone() and onAnnounceFail(). Clearly the code using the EventGenerator can use this to check which EventGenerator has failed or finished, which makes sense. But why can't we pass this id value into the constructor? Why is it called initialized() rather than initialize()? It looks at though this is a not-completely-finished bit - and some clarification would be helpful. But please take this pickiness within context - I love these extensions, and appreciate the contribution! Douglas

Older

  • Dec 15, 2008
    FlexStore Wiki page edited by Thom...@Universalmind.com
  • Dec 05, 2008
    issue 14 (setting a property as [Bindable] in a command creates error) commented on by alex.rosano   -   On a side note, thanks so much for creating these excellent extensions!
    On a side note, thanks so much for creating these excellent extensions!
  • Dec 05, 2008
    issue 14 (setting a property as [Bindable] in a command creates error) reported by alex.rosano   -   I have a command titled 'AddUserCommand' which extends com.universalmind.cairngorm.commands.Command. If I set a variable in the command as [Bindable], I get the following error: Implementation of interface 'flash.events:IEventDispatcher' cannot be added to class 'AddUserCommand', due to collision with existing method or property 'dispatchEvent'. I am guessing its not good practice to set a command property as [Bindable]. However, just thought I would point out the issue.
    I have a command titled 'AddUserCommand' which extends com.universalmind.cairngorm.commands.Command. If I set a variable in the command as [Bindable], I get the following error: Implementation of interface 'flash.events:IEventDispatcher' cannot be added to class 'AddUserCommand', due to collision with existing method or property 'dispatchEvent'. I am guessing its not good practice to set a command property as [Bindable]. However, just thought I would point out the issue.
  • Nov 06, 2008
    issue 13 (EventGenerator sequence is null when set in a separate MXML ...) commented on by rackamth...@yahoo.com   -   Hello, I found my issue, I had to nest EventGenerator in a UIComponent in order for home to dispatch event... As explained in the Thomas PDF Documentation. Cédric
    Hello, I found my issue, I had to nest EventGenerator in a UIComponent in order for home to dispatch event... As explained in the Thomas PDF Documentation. Cédric
  • Nov 05, 2008
    issue 13 (EventGenerator sequence is null when set in a separate MXML ...) reported by rackamth...@yahoo.com   -   Thank you very much for your framework. Great work guys! Here is the issue I faced that might not be related to an actual framework issue but perhaps a misunderstanding. 1. I create a separate MXML component holding Eventgenerator declaration (in attached) 2. I reference the component in the main application view 3. I start the sequence in calling the dispatch method on the referenced component The sequence of events shall be dispatched. Instead, I get a "Cannot access a property of a null object reference". I attach the debug screen of FB that points the location of the issue. Latest source version is used. When the same code in the external MXML component is put in the main application MXML the sequence is working. I'm looking forward to any answer. Thanks. Cédric
    Thank you very much for your framework. Great work guys! Here is the issue I faced that might not be related to an actual framework issue but perhaps a misunderstanding. 1. I create a separate MXML component holding Eventgenerator declaration (in attached) 2. I reference the component in the main application view 3. I start the sequence in calling the dispatch method on the referenced component The sequence of events shall be dispatched. Instead, I get a "Cannot access a property of a null object reference". I attach the debug screen of FB that points the location of the issue. Latest source version is used. When the same code in the external MXML component is put in the main application MXML the sequence is working. I'm looking forward to any answer. Thanks. Cédric
  • Nov 05, 2008
    issue 8 (EventGenerator breaks after first event in sequence) commented on by rackamth...@yahoo.com   -   Hi Gabriel, regarding this event chaining question, I was wondering if notifyCaller() could also be extended in order to handle the callback to the EventGenerator from the command to trigger the next event instead of doing event.callback.result(). The notifyCaller() would the notify views but also the eventgenerator if a callback is available in the event... What do you think? Thanks for any answer. Cédric
    Hi Gabriel, regarding this event chaining question, I was wondering if notifyCaller() could also be extended in order to handle the callback to the EventGenerator from the command to trigger the next event instead of doing event.callback.result(). The notifyCaller() would the notify views but also the eventgenerator if a callback is available in the event... What do you think? Thanks for any answer. Cédric
  • Oct 22, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Oct 22, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Oct 21, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Oct 21, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Oct 21, 2008
    r89 (Added new sample application [flex project] 'CafeTownsend' t...) committed by Thom...@Universalmind.com   -   Added new sample application [flex project] 'CafeTownsend' that uses the CGX, EventGenerators, and FlexUnit Testing.
    Added new sample application [flex project] 'CafeTownsend' that uses the CGX, EventGenerators, and FlexUnit Testing.
  • Oct 21, 2008
    r88 ([No log message]) committed by Thom...@Universalmind.com   -   [No log message]
    [No log message]
  • Aug 28, 2008
    issue 12 (ModuleControllers are not getting added as a subcontroller) reported by stevkolabs   -   What steps will reproduce the problem? 1. Create a FrontController 2. Try and add a ModuleController as a sub-controller; doesn't get added. What is the expected output? What do you see instead? ModuleController's commands should get added to the main controller. What version of the product are you using? On what operating system? Please provide any additional information below. FrontController line 122 -- checks to see if the module is a ModuleController, and if it is, it returns *false* -- meaning it never gets added to the Front controller. Should probably return true.
    What steps will reproduce the problem? 1. Create a FrontController 2. Try and add a ModuleController as a sub-controller; doesn't get added. What is the expected output? What do you see instead? ModuleController's commands should get added to the main controller. What version of the product are you using? On what operating system? Please provide any additional information below. FrontController line 122 -- checks to see if the module is a ModuleController, and if it is, it returns *false* -- meaning it never gets added to the Front controller. Should probably return true.
  • Aug 14, 2008
    r87 (Attempting to fix a corrupted upload.) committed by Thom...@Universalmind.com   -   Attempting to fix a corrupted upload.
    Attempting to fix a corrupted upload.
  • Aug 14, 2008
    r86 (Updated version with improved content.) committed by Thom...@Universalmind.com   -   Updated version with improved content.
    Updated version with improved content.
  • Aug 14, 2008
    r85 (Corrupted.) committed by Thom...@Universalmind.com   -   Corrupted.
    Corrupted.
  • Aug 14, 2008
    r84 (Improved content and better section organization) committed by Thom...@Universalmind.com   -   Improved content and better section organization
    Improved content and better section organization
  • Aug 13, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Aug 13, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Aug 13, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Aug 13, 2008
    DocumentationResources (Links to Documentation PDFs) Wiki page edited by Thom...@Universalmind.com
  • Aug 13, 2008
    r79 (Moved remotely) committed by Thom...@Universalmind.com   -   Moved remotely
    Moved remotely
  • Aug 13, 2008
    r78 (Uploaded Boeing presentation/slides to highlight features of...) committed by Thom...@Universalmind.com   -   Uploaded Boeing presentation/slides to highlight features of the Cairngorm Extensions.
    Uploaded Boeing presentation/slides to highlight features of the Cairngorm Extensions.
  • Aug 10, 2008
    issue 11 (A throttle on EventGenerator.TRIGGER_PARALLEL) reported by djohnsmarie   -   I've been using the EventGenerator a little. Would it be a good id to be able to throttle the parallel series of events? EG: if I have 10 events I would like to fire off in parallel, but only want 3 to be running at anyone time? Retrieving data from a web server could be a situation where this would be helpful. Pseudo code: new EventGenerator( eventQue , queHandler ,-1 , EventGenerator.TRIGGER_PARALLEL , 3 ).dispatch(); where the last argument of "3" is the number of parallel events to be running at any one time.
    I've been using the EventGenerator a little. Would it be a good id to be able to throttle the parallel series of events? EG: if I have 10 events I would like to fire off in parallel, but only want 3 to be running at anyone time? Retrieving data from a web server could be a situation where this would be helpful. Pseudo code: new EventGenerator( eventQue , queHandler ,-1 , EventGenerator.TRIGGER_PARALLEL , 3 ).dispatch(); where the last argument of "3" is the number of parallel events to be running at any one time.
  • Aug 06, 2008
    issue 10 (notifyCaller() will always pass an argument) reported by djohnsmarie   -   If you call "notifyCaller()" with no value, the handler will receive an argument. consider: public function bob() : void { var handler : CallBacks = new Callbacks( onResult_bob ); var event : MyEvent = new MyEvent( MyEvent.EVENT , handler ).dispatch(); } --the notify caller from the command is just: notifyCaller(); --if the handler is: onResult_bob() : void {} --an error is thrown as an argument is passed --if the handler is: onResult_bob( result : * ) : void {} -- no error is thrown, but the value of "result" is null Let me know if you need more info from me Cheers, David Harris djohnsmarie@gmail.com
    If you call "notifyCaller()" with no value, the handler will receive an argument. consider: public function bob() : void { var handler : CallBacks = new Callbacks( onResult_bob ); var event : MyEvent = new MyEvent( MyEvent.EVENT , handler ).dispatch(); } --the notify caller from the command is just: notifyCaller(); --if the handler is: onResult_bob() : void {} --an error is thrown as an argument is passed --if the handler is: onResult_bob( result : * ) : void {} -- no error is thrown, but the value of "result" is null Let me know if you need more info from me Cheers, David Harris djohnsmarie@gmail.com
  • Aug 03, 2008
    issue 9 (ServiceLocator in modular apps?) commented on by shlomicthailand   -   i want to join to this question, these extensions only addressed the front controllers in modules (which wasn't really an issue) and didn't address the service locator which is a big issue. Shlomi
    i want to join to this question, these extensions only addressed the front controllers in modules (which wasn't really an issue) and didn't address the service locator which is a big issue. Shlomi
 
Hosted by Google Code