<?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: Under the hood Flex data model using the fx:Model and fx:XML tags</title>
	<atom:link href="http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/feed/" rel="self" type="application/rss+xml" />
	<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/</link>
	<description>Developing Flash Applications</description>
	<pubDate>Thu, 09 Sep 2010 13:47:24 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7.1</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Jan</title>
		<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/comment-page-1/#comment-17272</link>
		<dc:creator>Jan</dc:creator>
		<pubDate>Thu, 14 Jan 2010 14:25:31 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=599#comment-17272</guid>
		<description>Hey,

I've got an other question, I've been using flash builder 4 for a week or 4, and it's working really nice. But now i came to a problem, maybe it's a binding issue..

I'm using a java-backend with a flex frontend. And when i want to use a labelfunction it doesn't load the indepth properties such as a value object, it's like it is lazy loaded in the flex side, I'm sure it is not comming from the backend because i've checked it overthere.

I've got it also in datagrid's that it doesn't load all the values at once.

for example

Class John{ var name:String; var lastName:Doe;

}

Class Doe{ var lastName:String; }

I ask at my back end get all John's, the backend gives me all John's which contains the Doe's. Now At the flex side I fire the result event from the callresponder when i receive that data. But still it can't acces the doe's into the Johns, the doe property of john is still null. When i ask it the second time it nows about the doe's, so it looks like lazy loading in a front-end way...

What am i doing wrong?</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I&#8217;ve got an other question, I&#8217;ve been using flash builder 4 for a week or 4, and it&#8217;s working really nice. But now i came to a problem, maybe it&#8217;s a binding issue..</p>
<p>I&#8217;m using a java-backend with a flex frontend. And when i want to use a labelfunction it doesn&#8217;t load the indepth properties such as a value object, it&#8217;s like it is lazy loaded in the flex side, I&#8217;m sure it is not comming from the backend because i&#8217;ve checked it overthere.</p>
<p>I&#8217;ve got it also in datagrid&#8217;s that it doesn&#8217;t load all the values at once.</p>
<p>for example</p>
<p>Class John{ var name:String; var lastName:Doe;</p>
<p>}</p>
<p>Class Doe{ var lastName:String; }</p>
<p>I ask at my back end get all John&#8217;s, the backend gives me all John&#8217;s which contains the Doe&#8217;s. Now At the flex side I fire the result event from the callresponder when i receive that data. But still it can&#8217;t acces the doe&#8217;s into the Johns, the doe property of john is still null. When i ask it the second time it nows about the doe&#8217;s, so it looks like lazy loading in a front-end way&#8230;</p>
<p>What am i doing wrong?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alfredo Duran</title>
		<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/comment-page-1/#comment-17073</link>
		<dc:creator>Alfredo Duran</dc:creator>
		<pubDate>Thu, 10 Sep 2009 16:03:35 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=599#comment-17073</guid>
		<description>I don't know how to use  but this example was great for me, Thank you</description>
		<content:encoded><![CDATA[<p>I don&#8217;t know how to use  but this example was great for me, Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: elad.ny</title>
		<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/comment-page-1/#comment-17045</link>
		<dc:creator>elad.ny</dc:creator>
		<pubDate>Wed, 19 Aug 2009 16:02:08 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=599#comment-17045</guid>
		<description>Hi Joel, if I understand what you are trying to achieve correctly, it sounds to me that you would need to create an architecture that keeps the state updated between the client, SQLite and Server.  

You can store the Web database locally and update when needed. I am working on an application that does that using LiveCycle.  Here's an API that can help you connect and perform SQLite tasks:  http://elromdesign.com/blog/2009/04/16/adobe-air-sqlite-manager-api-for-adobe-air-15-with-password-encryption/.  If this app is built from scratch you can match the server, client and SQLite so they are all using the same value objects structure.</description>
		<content:encoded><![CDATA[<p>Hi Joel, if I understand what you are trying to achieve correctly, it sounds to me that you would need to create an architecture that keeps the state updated between the client, SQLite and Server.  </p>
<p>You can store the Web database locally and update when needed. I am working on an application that does that using LiveCycle.  Here&#8217;s an API that can help you connect and perform SQLite tasks:  <a href="http://elromdesign.com/blog/2009/04/16/adobe-air-sqlite-manager-api-for-adobe-air-15-with-password-encryption/"  rel="nofollow">http://elromdesign.com/blog/2009/04/16/adobe-air-sqlite-manager-api-for-adobe-air-15-with-password-encryption/</a>.  If this app is built from scratch you can match the server, client and SQLite so they are all using the same value objects structure.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Joel Lignier</title>
		<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/comment-page-1/#comment-17044</link>
		<dc:creator>Joel Lignier</dc:creator>
		<pubDate>Wed, 19 Aug 2009 12:22:16 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=599#comment-17044</guid>
		<description>Hello and thanks for all the great information on this site. I'm still quite new to Flex development but am starting to really fall in love with this technology :)

Currently, I'm in the planning stage for a new commercial application that is going to be developed using Flex and AIR. This application is going to be very database intensive and so I am exploring how flex data models can be used in conjunction with Sqlite. Do you have any thoughts on this topic or can you point me to any resources? 

Cheers.</description>
		<content:encoded><![CDATA[<p>Hello and thanks for all the great information on this site. I&#8217;m still quite new to Flex development but am starting to really fall in love with this technology <img src='http://elromdesign.com/blog/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /><br />
Currently, I&#8217;m in the planning stage for a new commercial application that is going to be developed using Flex and AIR. This application is going to be very database intensive and so I am exploring how flex data models can be used in conjunction with Sqlite. Do you have any thoughts on this topic or can you point me to any resources? </p>
<p>Cheers.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: localToGlobal &#187; Blog Archive &#187; news review -&#62; 30th week of 2009</title>
		<link>http://elromdesign.com/blog/2009/07/20/under-the-hood-flex-data-model-using-the-fxmodel-and-fxxml-tags/comment-page-1/#comment-16969</link>
		<dc:creator>localToGlobal &#187; Blog Archive &#187; news review -&#62; 30th week of 2009</dc:creator>
		<pubDate>Fri, 24 Jul 2009 15:01:03 +0000</pubDate>
		<guid isPermaLink="false">http://elromdesign.com/blog/?p=599#comment-16969</guid>
		<description>[...] Under the hood Flex data model using the fx:Model and fx:XML tags by Elad Elrom [...]</description>
		<content:encoded><![CDATA[<p>[...] Under the hood Flex data model using the fx:Model and fx:XML tags by Elad Elrom [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>
