Re: [flexcoders] cairngorm design question, need suggestions

2007-11-19 Thread yiğit boyar
hi Ralf; in our case, we auto-generate the commanders; so we wouldn't need to test these parts. since calling a commander from another one without dispatching a new event does not violate the micro-architecture rules; we will choose it for efficiency; thanks a lot. On Nov 16, 2007 2:09 PM, Ralf Bo

[flexcoders] cairngorm design question, need suggestions

2007-11-16 Thread Yigit Boyar
hi all; i work in a project which includes the implementation of a RIA application in which the user will generate an XML based on an XSD defined language using drag&drops and etc. (user never sees the xml). at first, we developed a code generator using AIR that takes the XSD and generates vo's

Re: [flexcoders] cairngorm design question, need suggestions

2007-11-16 Thread Ralf Bokelberg
Both is possible. However, in our practice we try to test as much as possible. The call to a cairngorm command is rather difficult to test, whereas you can easily test if a ciarngorm event is dispatched by adding a listener to the CairngormEventDispatcher. Cheers Ralf. On Nov 16, 2007 12:34 PM

Re: [flexcoders] cairngorm design question , need suggestions

2007-11-13 Thread Bjorn Schultheiss
Hi Yigit, To execute commanderB from commanderA you need to dispatch eventB from commanderA. You can either pass the instance as an argument of eventB or reference via the model in commandB. regards, Bjorn On 14/11/2007, at 9:44 AM, yigit boyar wrote: hi all; we have a GUI built with

[flexcoders] cairngorm design question , need suggestions

2007-11-13 Thread yigit boyar
hi all; we have a GUI built with flex using cairngorm microarchitechture. the GUI is quite complex, and there is an xml schema (xsd) that represents the VO structure. We prepared a code generator(using AIR) which parses the xsd and creates vo's,commanders,events,model&frontcontroller, so we just

RE: [flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-22 Thread Karl Johnson
From: flexcoders@yahoogroups.com on behalf of Yiðit Boyar Sent: Wed 2/21/2007 3:45 PM To: flexcoders@yahoogroups.com Subject: Re: [flexcoders] Cairngorm - design question, need suggestions-best practices hi all; i just can not believe there is no reply to my post. has not anyone

Re: [flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-22 Thread Yiðit Boyar
hursday, February 22, 2007 12:35:01 AM Subject: Re: [flexcoders] Cairngorm - design question, need suggestions-best practices hey yigit, check out flex data services http://www.adobe. com/products/ flex/dataservice s/ it comes at a cost $$$ if you can afford it, it&#

Re: [flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-21 Thread Bhuvan Gupta
enough for you? or our group started to overflow and not answer needs... maybe a newsgroup/forum is needed.. - Original Message From: Yiðit Boyar <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, February 20, 2007 9:35:55 PM Subject: [flexcoders] Cairngorm -

Re: [flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-21 Thread Ben Yee
- Original Message From: Yiðit Boyar <[EMAIL PROTECTED]> To: flexcoders@yahoogroups.com Sent: Tuesday, February 20, 2007 9:35:55 PM Subject: [flexcoders] Cairngorm - design question, need suggestions-best practices hi all; i'll buld an application in which the same data (or st

Re: [flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-21 Thread Yiðit Boyar
TED]> To: flexcoders@yahoogroups.com Sent: Tuesday, February 20, 2007 9:35:55 PM Subject: [flexcoders] Cairngorm - design question, need suggestions-best practices hi all; i'll buld an application in which the same data (or sth related) is shown in many

[flexcoders] Cairngorm - design question, need suggestions-best practices

2007-02-20 Thread Yiðit Boyar
hi all; i'll buld an application in which the same data (or sth related) is shown in many views; so i will user cairngorm. (php&mysql&amfphp) but the problem is that other clients may change the data(base) so my model values must be updated in these cases. this seems to be a common problem with M