<?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: Highlight current Tree Node</title>
	<atom:link href="http://www.inside-oracle-apex.com/highlight-current-tree-node/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/</link>
	<description>Inside Oracle APEX - a blog that helps to get more out of Oracle Application Express (APEX) for your daily development work!</description>
	<lastBuildDate>Mon, 19 Dec 2011 12:04:44 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>By: LeinadJan</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-61895</link>
		<dc:creator>LeinadJan</dc:creator>
		<pubDate>Thu, 23 Sep 2010 19:51:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-61895</guid>
		<description>Hi,

I was wondering if it was possible to use tables from a granted schema as source for a tree.  My problem is that each time I try to create the tree query, it only keep the schema name as if it was a view.  I don&#039;t understand why I can&#039;t use other_schema.tree_table.  APEX always show me other_schema...

thank you</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I was wondering if it was possible to use tables from a granted schema as source for a tree.  My problem is that each time I try to create the tree query, it only keep the schema name as if it was a view.  I don&#8217;t understand why I can&#8217;t use other_schema.tree_table.  APEX always show me other_schema&#8230;</p>
<p>thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1516</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Mon, 09 Feb 2009 18:51:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1516</guid>
		<description>Nageeb, is this a question?</description>
		<content:encoded><![CDATA[<p>Nageeb, is this a question?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: nageeb</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1507</link>
		<dc:creator>nageeb</dc:creator>
		<pubDate>Mon, 09 Feb 2009 13:33:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1507</guid>
		<description>Change icon tree in dev. oracle 10g</description>
		<content:encoded><![CDATA[<p>Change icon tree in dev. oracle 10g</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Pranav</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1384</link>
		<dc:creator>Pranav</dc:creator>
		<pubDate>Wed, 04 Feb 2009 09:27:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1384</guid>
		<description>Hi,

I am new to APEX,I am trying to implement Menu as TREE into my Application,so as per your above instruction  i successfully complete the my page.but now i want that tree menu is seen on all page of my appliaction on left side.but when i creating second page and give the source of other page item,it show tree only in one page.becuase on shared component tree item source is change.

is there any way to assign the runtime tree into variable.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I am new to APEX,I am trying to implement Menu as TREE into my Application,so as per your above instruction  i successfully complete the my page.but now i want that tree menu is seen on all page of my appliaction on left side.but when i creating second page and give the source of other page item,it show tree only in one page.becuase on shared component tree item source is change.</p>
<p>is there any way to assign the runtime tree into variable.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1018</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Wed, 23 Jan 2008 07:35:49 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1018</guid>
		<description>Hi Tony,

just add a SPAN around your tree label where you can attach the onmouseover event. For example like the following query:

&lt;pre&gt;
SELECT EMPLOYEE_ID AS ID
     , MANAGER_ID  AS PID
     , &#039;&lt;span onmouseover=&quot;toolTip_enable(event,this,&#039;&#039;Primary key: &#039;&#124;&#124;EMPLOYEE_ID&#124;&#124;&#039;&#039;&#039;);&quot;&gt;&#039;&#124;&#124;
       LAST_NAME&#124;&#124;
       &#039;&lt;/span&gt;&#039;   AS NAME
     , NULL        AS LINK
     , NULL        AS A1
     , NULL        AS A2
  FROM EMPLOYEES
&lt;/pre&gt;

Patrick</description>
		<content:encoded><![CDATA[<p>Hi Tony,</p>
<p>just add a SPAN around your tree label where you can attach the onmouseover event. For example like the following query:</p>
<pre>
SELECT EMPLOYEE_ID AS ID
     , MANAGER_ID  AS PID
     , '&lt;span onmouseover="toolTip_enable(event,this,''Primary key: '||EMPLOYEE_ID||''');">'||
       LAST_NAME||
       '&lt;/span>'   AS NAME
     , NULL        AS LINK
     , NULL        AS A1
     , NULL        AS A2
  FROM EMPLOYEES
</pre>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tony Miller</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1017</link>
		<dc:creator>Tony Miller</dc:creator>
		<pubDate>Wed, 23 Jan 2008 07:35:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1017</guid>
		<description>Quick question.. Can yo udo a tooltip on a dhtml tree?? I mean the items in the tree, to show a small description of the menu item?

I could not find a spot to post the javascript call..


Thanks!

Tony Miller
tomiller@utmb.edu</description>
		<content:encoded><![CDATA[<p>Quick question.. Can yo udo a tooltip on a dhtml tree?? I mean the items in the tree, to show a small description of the menu item?</p>
<p>I could not find a spot to post the javascript call..</p>
<p>Thanks!</p>
<p>Tony Miller<br />
<a href="mailto:tomiller@utmb.edu" class="limailto">tomiller@utmb.edu</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1016</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Fri, 23 Nov 2007 19:52:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1016</guid>
		<description>Hi,&lt;br/&gt;&lt;br/&gt;I will do the follow-up on the OTN forum.&lt;br/&gt;&lt;br/&gt;Patrick</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I will do the follow-up on the OTN forum.</p>
<p>Patrick</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BoeroBoy</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1015</link>
		<dc:creator>BoeroBoy</dc:creator>
		<pubDate>Fri, 23 Nov 2007 18:59:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1015</guid>
		<description>Followup: There is a forum on this topic:&lt;br/&gt;http://forums.oracle.com/forums/thread.jspa?messageID=2192202</description>
		<content:encoded><![CDATA[<p>Followup: There is a forum on this topic:<br /><a href="http://forums.oracle.com/forums/thread.jspa?messageID=2192202" rel="nofollow" target="_blank" class="liexternal">http://forums.oracle.com/forums/thread.jspa?messageID=2192202</a></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: BoeroBoy</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1014</link>
		<dc:creator>BoeroBoy</dc:creator>
		<pubDate>Fri, 23 Nov 2007 16:44:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1014</guid>
		<description>Hi Patrick&lt;br/&gt;I&#039;m a big fan of your articles.  Very helpful.  I&#039;m having strange problem with trees in a sidebar display point.  Does anyone have experience where a tree is always blank in a sidebar (or any particular) region?  Apex 3.0.1.00.08 - Sand theme.&lt;br/&gt;&lt;br/&gt;Thanks&lt;br/&gt;BoeroBoy</description>
		<content:encoded><![CDATA[<p>Hi Patrick<br />I&#8217;m a big fan of your articles.  Very helpful.  I&#8217;m having strange problem with trees in a sidebar display point.  Does anyone have experience where a tree is always blank in a sidebar (or any particular) region?  Apex 3.0.1.00.08 &#8211; Sand theme.</p>
<p>Thanks<br />BoeroBoy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Patrick Wolf</title>
		<link>http://www.inside-oracle-apex.com/highlight-current-tree-node/comment-page-1/#comment-1013</link>
		<dc:creator>Patrick Wolf</dc:creator>
		<pubDate>Fri, 08 Jun 2007 18:33:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.inside-oracle-apex.com/en/?p=138#comment-1013</guid>
		<description>Freut mich!</description>
		<content:encoded><![CDATA[<p>Freut mich!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

