<?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: Zend Framework, Zend_Dojo and  Dojo Tree</title>
	<atom:link href="http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/</link>
	<description>Randomness will get you everywhere.</description>
	<lastBuildDate>Sat, 04 Feb 2012 15:24:19 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
	<item>
		<title>By: tree of life celtic</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-995</link>
		<dc:creator>tree of life celtic</dc:creator>
		<pubDate>Sat, 04 Feb 2012 15:24:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-995</guid>
		<description>&lt;strong&gt;Just Browsing...&lt;/strong&gt;

Then I came across this blog when surfing around on the internet earlier this week...</description>
		<content:encoded><![CDATA[<p><strong>Just Browsing&#8230;</strong></p>
<p>Then I came across this blog when surfing around on the internet earlier this week&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-966</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 08 Oct 2011 20:41:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-966</guid>
		<description>Forget the last comment I was comparing the root level with next level branch[&#039;parents&#039;].</description>
		<content:encoded><![CDATA[<p>Forget the last comment I was comparing the root level with next level branch['parents'].</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-965</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 08 Oct 2011 20:10:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-965</guid>
		<description>addendum to last post.  The $branch[&#039;parent&#039;] never seems to change so the conditional test always returns the branch[&#039;id&#039;].

Therefore, no indexed array.</description>
		<content:encoded><![CDATA[<p>addendum to last post.  The $branch['parent'] never seems to change so the conditional test always returns the branch['id'].</p>
<p>Therefore, no indexed array.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jeff</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-964</link>
		<dc:creator>Jeff</dc:creator>
		<pubDate>Sat, 08 Oct 2011 19:25:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-964</guid>
		<description>I have been trying to use this and It seems to go into a black hole.  When I comment out this line:
$arrNodes[$key][&#039;children&#039;] = $this-&gt;_walkTree($branches, $this-&gt;thisPath);

it runs without adding any childern.  My arrays are below.

This is my top level:
  [&quot;admin&quot;] =&gt; array(4) {
    [&quot;parent&quot;] =&gt; string(1) &quot;0&quot;
    [&quot;id&quot;] =&gt; string(5) &quot;admin&quot;
    [&quot;branch_name&quot;] =&gt; string(28) &quot;mttdeveloper/refactor/action&quot;
    [&quot;label&quot;] =&gt; string(5) &quot;admin&quot;
  }
  [&quot;mttauthacl&quot;] =&gt; array(4) {
    [&quot;parent&quot;] =&gt; string(1) &quot;0&quot;
    [&quot;id&quot;] =&gt; string(10) &quot;mttauthacl&quot;
    [&quot;branch_name&quot;] =&gt; string(28) &quot;mttdeveloper/refactor/action&quot;
    [&quot;label&quot;] =&gt; string(10) &quot;mttauthacl&quot;
  }
  [&quot;mttdeveloper&quot;] =&gt; array(4) {
    [&quot;parent&quot;] =&gt; string(1) &quot;0&quot;
    [&quot;id&quot;] =&gt; string(12) &quot;mttdeveloper&quot;
    [&quot;branch_name&quot;] =&gt; string(28) &quot;mttdeveloper/refactor/action&quot;
    [&quot;label&quot;] =&gt; string(12) &quot;mttdeveloper&quot;
  }
}

Second Level looks like this:

  [&quot;admin&quot;] =&gt; array(4) {
    [&quot;parent&quot;] =&gt; string(5) &quot;admin&quot;
    [&quot;id&quot;] =&gt; string(5) &quot;admin&quot;
    [&quot;branch_name&quot;] =&gt; string(5) &quot;admin&quot;
    [&quot;label&quot;] =&gt; string(5) &quot;admin&quot;
  }
}

branches look like this with out their children.

array(2) {
  [&quot;admin&quot;] =&gt; array(5) {
    [&quot;id&quot;] =&gt; string(5) &quot;admin&quot;
    [&quot;label&quot;] =&gt; string(5) &quot;Admin&quot;
    [&quot;path&quot;] =&gt; string(30) &quot;/mttdeveloper/refactor/action/&quot;
    [&quot;iconClass&quot;] =&gt; string(6) &quot;folder&quot;
    [&quot;children&quot;] =&gt; array(0) {
    }
  }
  [&quot;demo&quot;] =&gt; array(5) {
    [&quot;id&quot;] =&gt; string(4) &quot;demo&quot;
    [&quot;label&quot;] =&gt; string(4) &quot;Demo&quot;
    [&quot;path&quot;] =&gt; string(30) &quot;/mttdeveloper/refactor/action/&quot;
    [&quot;iconClass&quot;] =&gt; string(6) &quot;folder&quot;
    [&quot;children&quot;] =&gt; array(0) {
    }
  }
}</description>
		<content:encoded><![CDATA[<p>I have been trying to use this and It seems to go into a black hole.  When I comment out this line:<br />
$arrNodes[$key]['children'] = $this-&gt;_walkTree($branches, $this-&gt;thisPath);</p>
<p>it runs without adding any childern.  My arrays are below.</p>
<p>This is my top level:<br />
  ["admin"] =&gt; array(4) {<br />
    ["parent"] =&gt; string(1) &#8220;0&#8243;<br />
    ["id"] =&gt; string(5) &#8220;admin&#8221;<br />
    ["branch_name"] =&gt; string(28) &#8220;mttdeveloper/refactor/action&#8221;<br />
    ["label"] =&gt; string(5) &#8220;admin&#8221;<br />
  }<br />
  ["mttauthacl"] =&gt; array(4) {<br />
    ["parent"] =&gt; string(1) &#8220;0&#8243;<br />
    ["id"] =&gt; string(10) &#8220;mttauthacl&#8221;<br />
    ["branch_name"] =&gt; string(28) &#8220;mttdeveloper/refactor/action&#8221;<br />
    ["label"] =&gt; string(10) &#8220;mttauthacl&#8221;<br />
  }<br />
  ["mttdeveloper"] =&gt; array(4) {<br />
    ["parent"] =&gt; string(1) &#8220;0&#8243;<br />
    ["id"] =&gt; string(12) &#8220;mttdeveloper&#8221;<br />
    ["branch_name"] =&gt; string(28) &#8220;mttdeveloper/refactor/action&#8221;<br />
    ["label"] =&gt; string(12) &#8220;mttdeveloper&#8221;<br />
  }<br />
}</p>
<p>Second Level looks like this:</p>
<p>  ["admin"] =&gt; array(4) {<br />
    ["parent"] =&gt; string(5) &#8220;admin&#8221;<br />
    ["id"] =&gt; string(5) &#8220;admin&#8221;<br />
    ["branch_name"] =&gt; string(5) &#8220;admin&#8221;<br />
    ["label"] =&gt; string(5) &#8220;admin&#8221;<br />
  }<br />
}</p>
<p>branches look like this with out their children.</p>
<p>array(2) {<br />
  ["admin"] =&gt; array(5) {<br />
    ["id"] =&gt; string(5) &#8220;admin&#8221;<br />
    ["label"] =&gt; string(5) &#8220;Admin&#8221;<br />
    ["path"] =&gt; string(30) &#8220;/mttdeveloper/refactor/action/&#8221;<br />
    ["iconClass"] =&gt; string(6) &#8220;folder&#8221;<br />
    ["children"] =&gt; array(0) {<br />
    }<br />
  }<br />
  ["demo"] =&gt; array(5) {<br />
    ["id"] =&gt; string(4) &#8220;demo&#8221;<br />
    ["label"] =&gt; string(4) &#8220;Demo&#8221;<br />
    ["path"] =&gt; string(30) &#8220;/mttdeveloper/refactor/action/&#8221;<br />
    ["iconClass"] =&gt; string(6) &#8220;folder&#8221;<br />
    ["children"] =&gt; array(0) {<br />
    }<br />
  }<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: admin</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-265</link>
		<dc:creator>admin</dc:creator>
		<pubDate>Thu, 20 Aug 2009 07:43:46 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-265</guid>
		<description>Faoma, Short answer: I don&#039;t know!
You may be able to do this, I havn&#039;t tried. Infact, I have been using alot more dojo recently, and I have found the dijit view helper not overly useful, instead I have been using programmatic notation with  my own layer ontop of dojo to build my UI&#039;s and manage interaction from the user to dojo. My Dojo foo still needs a lot of work, and I&#039;m sure using dojo&#039;s custom build layers I could reduce this work further.</description>
		<content:encoded><![CDATA[<p>Faoma, Short answer: I don&#8217;t know!<br />
You may be able to do this, I havn&#8217;t tried. Infact, I have been using alot more dojo recently, and I have found the dijit view helper not overly useful, instead I have been using programmatic notation with  my own layer ontop of dojo to build my UI&#8217;s and manage interaction from the user to dojo. My Dojo foo still needs a lot of work, and I&#8217;m sure using dojo&#8217;s custom build layers I could reduce this work further.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Faoma tree menu</title>
		<link>http://www.rmauger.co.uk/2009/02/zend-framework-zend_dojo-and-dojo-tree/comment-page-1/#comment-253</link>
		<dc:creator>Faoma tree menu</dc:creator>
		<pubDate>Mon, 17 Aug 2009 11:09:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.rmauger.co.uk/?p=18#comment-253</guid>
		<description>Hi,

Can be the tree menu  created using Zend_Dojo_View_Helper_Dijit  or any class with programmatic usage?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>Can be the tree menu  created using Zend_Dojo_View_Helper_Dijit  or any class with programmatic usage?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

