<?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: Using the Spark NavigatorContent container with an MX Accordion container in Flex 4</title>
	<atom:link href="http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 19:26:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: HubertHG</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-9624</link>
		<dc:creator>HubertHG</dc:creator>
		<pubDate>Wed, 21 Sep 2011 23:21:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-9624</guid>
		<description>I have a problem adding a Spark DataGrid in a Navigator Content created programmatically. It don&#039;t displayed.
I can see, DataGrid was added &#039;cause in the elements of the Navigator was incremented.
Code:
var nc:* = myAcc.selectedChild;	
var nav:NavigatorContent = nc;					
nav.addElement(dg);</description>
		<content:encoded><![CDATA[<p>I have a problem adding a Spark DataGrid in a Navigator Content created programmatically. It don&#8217;t displayed.<br />
I can see, DataGrid was added &#8217;cause in the elements of the Navigator was incremented.<br />
Code:<br />
var nc:* = myAcc.selectedChild;<br />
var nav:NavigatorContent = nc;<br />
nav.addElement(dg);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: GClavell</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-8941</link>
		<dc:creator>GClavell</dc:creator>
		<pubDate>Tue, 01 Feb 2011 15:51:46 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-8941</guid>
		<description>I was trying the code below and does not work for me .. any suggestion??
&lt;code&gt;
var currentRenderer:ParentFieldRenderer; 
for each(var field:FieldDescriptor in array)
{
  currentRenderer = new ParentFieldRenderer();
  currentRenderer.field = field;
  accordion.addElement(currentRenderer);
}
//accordion.invalidateProperties();
//accordion.invalidateDisplayList();
&lt;/code&gt;
Where ParentFieldRenderer extends NavigatorContent in order to add it a field called &#039;field&#039; which has the data to be rendered.
What I get is an Accordion filled with nothing ..
I tried also accordion.invalidateProperties() and accordion.invalidateDisplayList() ... and results were the same.
Any suggestion, example, link , help?? ;)
thx</description>
		<content:encoded><![CDATA[<p>I was trying the code below and does not work for me .. any suggestion??<br />
<code><br />
var currentRenderer:ParentFieldRenderer;<br />
for each(var field:FieldDescriptor in array)<br />
{<br />
  currentRenderer = new ParentFieldRenderer();<br />
  currentRenderer.field = field;<br />
  accordion.addElement(currentRenderer);<br />
}<br />
//accordion.invalidateProperties();<br />
//accordion.invalidateDisplayList();<br />
</code><br />
Where ParentFieldRenderer extends NavigatorContent in order to add it a field called &#8216;field&#8217; which has the data to be rendered.<br />
What I get is an Accordion filled with nothing ..<br />
I tried also accordion.invalidateProperties() and accordion.invalidateDisplayList() &#8230; and results were the same.<br />
Any suggestion, example, link , help?? ;)<br />
thx</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaffer</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6522</link>
		<dc:creator>Jaffer</dc:creator>
		<pubDate>Fri, 04 Dec 2009 16:32:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6522</guid>
		<description>letterwriters: is the mxml component wrapped inside  &lt;s:group&gt; at the moment</description>
		<content:encoded><![CDATA[<p>letterwriters: is the mxml component wrapped inside  &lt;s:group&gt; at the moment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaffer</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6521</link>
		<dc:creator>Jaffer</dc:creator>
		<pubDate>Fri, 04 Dec 2009 16:30:58 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6521</guid>
		<description>Oops!  Didnt realize the editor was so bad.

This bit goes in the main application mxml:

&lt;s:WindowedApplication 	xmlns:fx=&quot;http://ns.adobe.com/mxml/2009&quot; 
						xmlns:s=&quot;library://ns.adobe.com/flex/spark&quot; 
						xmlns:mx=&quot;library://ns.adobe.com/flex/halo&quot;
						xmlns:hassegContainers=&quot;org.hasseg.containers.*&quot;											
						xmlns:components=&quot;components.*&quot;
						xmlns:flmcg=&quot;services.flmcg.*&quot;
						creationComplete=&quot;initApp()&quot;
						closing=&quot;endApp()&quot;
						showStatusBar=&quot;true&quot;
						xmlns:views=&quot;com.views.*&quot;
						status=&quot;{gStatusText}&quot;
						backgroundColor=&quot;#E5E7F4&quot;	 
						currentState=&quot;PreLogon&quot; viewSourceURL=&quot;srcview/index.html&quot;&gt;



&lt;hassegContainers:VerticalTabNavigator 
	
		width=&quot;100%&quot; height=&quot;100%&quot; 
		tabBarLocation=&quot;left&quot; 
		verticalAlign=&quot;bottom&quot; 
		paddingRight=&quot;10&quot;
		showEffect=&quot;fade&quot; hideEffect=&quot;fade&quot;
		baseColor=&quot;{cPanelColour}&quot;	&gt;	
		
		
		&lt;views:letterwriters label=&quot;LetterWriter&quot; width=&quot;100%&quot; height=&quot;100%&quot;&gt;
		
	&lt;/hassegContainers:VerticalTabNavigator&gt;</description>
		<content:encoded><![CDATA[<p>Oops!  Didnt realize the editor was so bad.</p>
<p>This bit goes in the main application mxml:</p>
<p>&lt;s:WindowedApplication 	xmlns:fx=&#8221;http://ns.adobe.com/mxml/2009&#8243;<br />
						xmlns:s=&#8221;library://ns.adobe.com/flex/spark&#8221;<br />
						xmlns:mx=&#8221;library://ns.adobe.com/flex/halo&#8221;<br />
						xmlns:hassegContainers=&#8221;org.hasseg.containers.*&#8221;<br />
						xmlns:components=&#8221;components.*&#8221;<br />
						xmlns:flmcg=&#8221;services.flmcg.*&#8221;<br />
						creationComplete=&#8221;initApp()&#8221;<br />
						closing=&#8221;endApp()&#8221;<br />
						showStatusBar=&#8221;true&#8221;<br />
						xmlns:views=&#8221;com.views.*&#8221;<br />
						status=&#8221;{gStatusText}&#8221;<br />
						backgroundColor=&#8221;#E5E7F4&#8243;<br />
						currentState=&#8221;PreLogon&#8221; viewSourceURL=&#8221;srcview/index.html&#8221;&gt;</p>
<p>&lt;hassegContainers:VerticalTabNavigator </p>
<p>		width=&#8221;100%&#8221; height=&#8221;100%&#8221;<br />
		tabBarLocation=&#8221;left&#8221;<br />
		verticalAlign=&#8221;bottom&#8221;<br />
		paddingRight=&#8221;10&#8243;<br />
		showEffect=&#8221;fade&#8221; hideEffect=&#8221;fade&#8221;<br />
		baseColor=&#8221;{cPanelColour}&#8221;	&gt;	</p>
<p>		&lt;views:letterwriters label=&#8221;LetterWriter&#8221; width=&#8221;100%&#8221; height=&#8221;100%&#8221;&gt;</p>
<p>	&lt;/hassegContainers:VerticalTabNavigator&gt;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaffer</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6520</link>
		<dc:creator>Jaffer</dc:creator>
		<pubDate>Fri, 04 Dec 2009 16:28:02 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6520</guid>
		<description>Hi There,

I am a newby to Flex applications. Here is what I am trying to do. I am using hasseg vertical tab navigator to create a user interface.

My plan is to have the contents of each tab as a separate mxml component. 

This bit goes in the main application mxml:


	
		
		



letterwriters: is the mxml component wrapped inside .

This is the error that I am getting: &quot; Halo Navigators require Halo container based children&quot;

If you could help me how to reference this component properly it would be great.

Cheers,
Jaffer</description>
		<content:encoded><![CDATA[<p>Hi There,</p>
<p>I am a newby to Flex applications. Here is what I am trying to do. I am using hasseg vertical tab navigator to create a user interface.</p>
<p>My plan is to have the contents of each tab as a separate mxml component. </p>
<p>This bit goes in the main application mxml:</p>
<p>letterwriters: is the mxml component wrapped inside .</p>
<p>This is the error that I am getting: &#8221; Halo Navigators require Halo container based children&#8221;</p>
<p>If you could help me how to reference this component properly it would be great.</p>
<p>Cheers,<br />
Jaffer</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6264</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:49:45 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6264</guid>
		<description>http://bugs.adobe.com/jira/browse/FLEXDOCS-1102</description>
		<content:encoded><![CDATA[<p><a href="http://bugs.adobe.com/jira/browse/FLEXDOCS-1102" rel="nofollow">http://bugs.adobe.com/jira/browse/FLEXDOCS-1102</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6263</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 05 Nov 2009 22:44:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6263</guid>
		<description>@Igor Borodin,

The documentation is probably just a little out of sync with the latest API and controls/containers. The Spark NavigatorContent container was added for this very purpose (from what I understand).

I&#039;ll follow up with the documentation team and get some clarification.

Thanks,
Peter</description>
		<content:encoded><![CDATA[<p>@Igor Borodin,</p>
<p>The documentation is probably just a little out of sync with the latest API and controls/containers. The Spark NavigatorContent container was added for this very purpose (from what I understand).</p>
<p>I&#8217;ll follow up with the documentation team and get some clarification.</p>
<p>Thanks,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6261</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Thu, 05 Nov 2009 17:38:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6261</guid>
		<description>Hello Peter,

I&#039;m a bit confused.
In the Flex 4 language reference in the Accordion class there is a following note:
&quot;Note: The direct children of a Halo navigator container must be Halo containers, either Halo layout or Halo navigator containers. You cannot directly nest a control or a Spark container within a navigator; they must be children of a child Halo container.&quot;
Your example, DOES nest Spark components as direct children. And it works just fine.  Am I missing something?

thanks,
Igor Borodin</description>
		<content:encoded><![CDATA[<p>Hello Peter,</p>
<p>I&#8217;m a bit confused.<br />
In the Flex 4 language reference in the Accordion class there is a following note:<br />
&#8220;Note: The direct children of a Halo navigator container must be Halo containers, either Halo layout or Halo navigator containers. You cannot directly nest a control or a Spark container within a navigator; they must be children of a child Halo container.&#8221;<br />
Your example, DOES nest Spark components as direct children. And it works just fine.  Am I missing something?</p>
<p>thanks,<br />
Igor Borodin</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-6001</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Mon, 12 Oct 2009 14:44:57 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-6001</guid>
		<description>SWF added.</description>
		<content:encoded><![CDATA[<p>SWF added.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2009/10/10/using-the-spark-navigatorcontent-container-with-a-halo-accordion-container-in-flex-4/comment-page-1/#comment-5999</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Sun, 11 Oct 2009 01:44:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/?p=1994#comment-5999</guid>
		<description>@DBird,

The example would look exactly the same as a Halo Accordion control. There is no visual difference between the Halo Accordion+Halo VBox container and/or a Halo Accordion+Spark NavigatorContent container.

But feel free to copy this into a copy of Flash Builder 4 beta and experience the crazy cool for yourself.

Peter</description>
		<content:encoded><![CDATA[<p>@DBird,</p>
<p>The example would look exactly the same as a Halo Accordion control. There is no visual difference between the Halo Accordion+Halo VBox container and/or a Halo Accordion+Spark NavigatorContent container.</p>
<p>But feel free to copy this into a copy of Flash Builder 4 beta and experience the crazy cool for yourself.</p>
<p>Peter</p>
]]></content:encoded>
	</item>
</channel>
</rss>

