<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Building a Flex Application with the Parsley Framework</title>
	<atom:link href="http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/feed/" rel="self" type="application/rss+xml" />
	<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=building-a-flex-application-with-the-parsley-framework</link>
	<description>Mobile, Cloud, HTML, JavaScript, Java, PHP, Flex</description>
	<lastBuildDate>Tue, 07 Feb 2012 03:43:09 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: Action</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4259</link>
		<dc:creator>Action</dc:creator>
		<pubDate>Thu, 17 Nov 2011 22:58:48 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4259</guid>
		<description>Great Article, Christopher. I have also found this very interesting article about Silent errors in Parsley http://stageaction.wordpress.com/2011/11/17/flex-parsley-silent-failure/</description>
		<content:encoded><![CDATA[<p>Great Article, Christopher. I have also found this very interesting article about Silent errors in Parsley <a href="http://stageaction.wordpress.com/2011/11/17/flex-parsley-silent-failure/" rel="nofollow">http://stageaction.wordpress.com/2011/11/17/flex-parsley-silent-failure/</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eq</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4258</link>
		<dc:creator>eq</dc:creator>
		<pubDate>Wed, 02 Nov 2011 02:04:38 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4258</guid>
		<description>Never mind, i figured it out,
1) dispatched an event in application complete
2) added event listener in the constructor
3) handle that event in the controller
4) executeservicecall to call the server</description>
		<content:encoded><![CDATA[<p>Never mind, i figured it out,<br />
1) dispatched an event in application complete<br />
2) added event listener in the constructor<br />
3) handle that event in the controller<br />
4) executeservicecall to call the server</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: eq</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4257</link>
		<dc:creator>eq</dc:creator>
		<pubDate>Sat, 29 Oct 2011 18:04:05 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4257</guid>
		<description>How to load data on application startup, let say in your example above when the application starts/display, i want to display list of contacts without typing in anything in search field.

I tried few things but no success yet.
I tried putting code in creationComplete=&quot;search(....
but i noticed that the service is null.

When i type % in search field it DOES display contacts, which means that during preinitialize, service was not initialized, right? or am i missing something

A good coded example would be very helpfull or is this even possible with parsley?

thanks</description>
		<content:encoded><![CDATA[<p>How to load data on application startup, let say in your example above when the application starts/display, i want to display list of contacts without typing in anything in search field.</p>
<p>I tried few things but no success yet.<br />
I tried putting code in creationComplete=&#8221;search(&#8230;.<br />
but i noticed that the service is null.</p>
<p>When i type % in search field it DOES display contacts, which means that during preinitialize, service was not initialized, right? or am i missing something</p>
<p>A good coded example would be very helpfull or is this even possible with parsley?</p>
<p>thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikash agarwal</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4256</link>
		<dc:creator>vikash agarwal</dc:creator>
		<pubDate>Mon, 26 Sep 2011 06:34:57 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4256</guid>
		<description>Hi,

I got the answer for my previous question. Looked into Parsley Docs.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I got the answer for my previous question. Looked into Parsley Docs.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vikash agarwal</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4255</link>
		<dc:creator>vikash agarwal</dc:creator>
		<pubDate>Fri, 23 Sep 2011 11:33:43 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4255</guid>
		<description>Hi,
Thanks for the example. I have a small doubt.
In the example, config.mxml you have added ContactServiceMock and in views you have
[Inject]
[Bindable]
public var service:IContactService

I guess it means service in views will be intialized to ContactServiceMock Object.

In case I want to intialize service object with ContactServiceRemote, then i replace ContactServiceMock with ContactServiceRemote in Config.mxml.

Now, If I have two different views where one needs ContactServiceRemote and one needs ContactServiceMock then how can we add both services in Config.mxml.

Thanks a  ton in advance for the  reply.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
Thanks for the example. I have a small doubt.<br />
In the example, config.mxml you have added ContactServiceMock and in views you have<br />
[Inject]<br />
[Bindable]<br />
public var service:IContactService</p>
<p>I guess it means service in views will be intialized to ContactServiceMock Object.</p>
<p>In case I want to intialize service object with ContactServiceRemote, then i replace ContactServiceMock with ContactServiceRemote in Config.mxml.</p>
<p>Now, If I have two different views where one needs ContactServiceRemote and one needs ContactServiceMock then how can we add both services in Config.mxml.</p>
<p>Thanks a  ton in advance for the  reply.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: a</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4254</link>
		<dc:creator>a</dc:creator>
		<pubDate>Fri, 29 Apr 2011 11:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4254</guid>
		<description>cxcsf</description>
		<content:encoded><![CDATA[<p>cxcsf</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ashish</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4253</link>
		<dc:creator>Ashish</dc:creator>
		<pubDate>Tue, 19 Apr 2011 09:50:26 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4253</guid>
		<description>Thanks for such a nice example.
But &quot;Managed event&quot; part of it kinda looks little vulnerable, especially when multiple objects of a class containing resultHandler are active in the same scope... In that case every object will respond to the event for which the handler is written and unnecessary updates will be made to the unintended object.... I hope I am making sense here...</description>
		<content:encoded><![CDATA[<p>Thanks for such a nice example.<br />
But &#8220;Managed event&#8221; part of it kinda looks little vulnerable, especially when multiple objects of a class containing resultHandler are active in the same scope&#8230; In that case every object will respond to the event for which the handler is written and unnecessary updates will be made to the unintended object&#8230;. I hope I am making sense here&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Manasa</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4252</link>
		<dc:creator>Manasa</dc:creator>
		<pubDate>Fri, 04 Feb 2011 06:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4252</guid>
		<description>Nice Tutorial. Goes really well with the manual in Parsley&#039;s documentation.

I just started learning Parsley. Im having difficult getting Message Handlers. So in the given Contact Management application, ToolBar view dispatches the event &quot;search&quot; and ContactList view has a message handler for it. This part is clear.

 I defines a message handler for the same &quot;Search&quot; event in main.mxml. But this method did not get invoked :(
are there any restrictions on which objects can have message handlers for events?

thanks in advance ..</description>
		<content:encoded><![CDATA[<p>Nice Tutorial. Goes really well with the manual in Parsley&#8217;s documentation.</p>
<p>I just started learning Parsley. Im having difficult getting Message Handlers. So in the given Contact Management application, ToolBar view dispatches the event &#8220;search&#8221; and ContactList view has a message handler for it. This part is clear.</p>
<p> I defines a message handler for the same &#8220;Search&#8221; event in main.mxml. But this method did not get invoked <img src='http://coenraets.org/blog/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
are there any restrictions on which objects can have message handlers for events?</p>
<p>thanks in advance ..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Scott Schafer</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4251</link>
		<dc:creator>Scott Schafer</dc:creator>
		<pubDate>Sat, 15 Jan 2011 20:19:33 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4251</guid>
		<description>Thanks for this tutorial.

It all looks good, except that this line bugs me: [ManagedEvents(&quot;addContact,search&quot;)]

It seems wrong to me to define the event names as a constant and then hard code them in this file. I&#039;d like to do something like the following instead, but I can&#039;t seem to get it to work.



Any ideas?</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial.</p>
<p>It all looks good, except that this line bugs me: [ManagedEvents("addContact,search")]</p>
<p>It seems wrong to me to define the event names as a constant and then hard code them in this file. I&#8217;d like to do something like the following instead, but I can&#8217;t seem to get it to work.</p>
<p>Any ideas?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: subba</title>
		<link>http://coenraets.org/blog/2009/07/building-a-flex-application-with-the-parsley-framework/#comment-4250</link>
		<dc:creator>subba</dc:creator>
		<pubDate>Thu, 09 Dec 2010 07:13:16 +0000</pubDate>
		<guid isPermaLink="false">http://coenraets.org/blog/?p=122#comment-4250</guid>
		<description>Thanks, for great example</description>
		<content:encoded><![CDATA[<p>Thanks, for great example</p>
]]></content:encoded>
	</item>
</channel>
</rss>

