<?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: YUI 3 Gallery: Accordion Widget</title>
	<atom:link href="http://www.yuiblog.com/blog/index.php/2009/11/04/yui-3-gallery-accordion-widget/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/</link>
	<description>The official blog of the YUI Project.</description>
	<lastBuildDate>Thu, 09 Feb 2012 01:46:52 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.4</generator>
	<item>
		<title>By: Biswo</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-594715</link>
		<dc:creator>Biswo</dc:creator>
		<pubDate>Wed, 20 Oct 2010 11:47:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-594715</guid>
		<description>I want to create an accordian on based roles which is going to populate from data base.Both Menus headers and sub header are alsio will be populates from database.How I will do it .Can any body suggest any apparoach.The accordian is going to added it in JSp.</description>
		<content:encoded><![CDATA[<p>I want to create an accordian on based roles which is going to populate from data base.Both Menus headers and sub header are alsio will be populates from database.How I will do it .Can any body suggest any apparoach.The accordian is going to added it in JSp.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iliyan Peychev</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-588062</link>
		<dc:creator>Iliyan Peychev</dc:creator>
		<pubDate>Fri, 05 Feb 2010 07:38:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-588062</guid>
		<description>There shouldn&#039;t be any problems to add left and right double quotes. See this example:
http://gist.github.com/295574

I would suggest to check your output encoding.
And, next time when you have questions, you would better use the official YUI3 Accordion forum:
http://yuilibrary.com/forum/viewforum.php?f=102

Iliyan</description>
		<content:encoded><![CDATA[<p>There shouldn&#8217;t be any problems to add left and right double quotes. See this example:<br />
<a href="http://gist.github.com/295574" rel="nofollow">http://gist.github.com/295574</a></p>
<p>I would suggest to check your output encoding.<br />
And, next time when you have questions, you would better use the official YUI3 Accordion forum:<br />
<a href="http://yuilibrary.com/forum/viewforum.php?f=102" rel="nofollow">http://yuilibrary.com/forum/viewforum.php?f=102</a></p>
<p>Iliyan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hue</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-588051</link>
		<dc:creator>hue</dc:creator>
		<pubDate>Thu, 04 Feb 2010 17:12:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-588051</guid>
		<description>Update to previous post...

The &quot;&lt;b /&gt;&quot;  did not post in the text. So, the line in question is 

data[i].TEST_DESC+&quot;&lt;b /&gt;&quot;...</description>
		<content:encoded><![CDATA[<p>Update to previous post&#8230;</p>
<p>The &#8220;<b />&#8221;  did not post in the text. So, the line in question is </p>
<p>data[i].TEST_DESC+&#8221;<b />&#8220;&#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: hue</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-588050</link>
		<dc:creator>hue</dc:creator>
		<pubDate>Thu, 04 Feb 2010 17:10:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-588050</guid>
		<description>I&#039;m dynamically adding items from a database. In this case the fields are TEST_%.  My question is centered on the need of adding the &quot;&quot; to  bodyContent: data[i].TEST_DESC+&quot;&quot; in order for the body to render. Is this a bug?

        for(var i=0; i&lt;data.length; i++) {
            var item = new Y.AccordionItem( {
                     label: data[i].TEST_NAME,
                     expanded: false,
                     contentBox: &quot;dynamicContentBox2&quot;,
                     contentHeight: { method: &quot;auto&quot; },
                     bodyContent: data[i].TEST_DESC+&quot;&quot;
                 } );
            accordion.addItem( item );
         }</description>
		<content:encoded><![CDATA[<p>I&#8217;m dynamically adding items from a database. In this case the fields are TEST_%.  My question is centered on the need of adding the &#8220;&#8221; to  bodyContent: data[i].TEST_DESC+&#8221;" in order for the body to render. Is this a bug?</p>
<p>        for(var i=0; i&lt;data.length; i++) {<br />
            var item = new Y.AccordionItem( {<br />
                     label: data[i].TEST_NAME,<br />
                     expanded: false,<br />
                     contentBox: &quot;dynamicContentBox2&quot;,<br />
                     contentHeight: { method: &quot;auto&quot; },<br />
                     bodyContent: data[i].TEST_DESC+&quot;&#8221;<br />
                 } );<br />
            accordion.addItem( item );<br />
         }</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iliyan Peychev</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-587516</link>
		<dc:creator>Iliyan Peychev</dc:creator>
		<pubDate>Thu, 17 Dec 2009 22:33:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-587516</guid>
		<description>Please, create an issue here:
http://github.com/ipeychev/yui3-gallery/issues

I also would need an example page, which fails.

Iliyan</description>
		<content:encoded><![CDATA[<p>Please, create an issue here:<br />
<a href="http://github.com/ipeychev/yui3-gallery/issues" rel="nofollow">http://github.com/ipeychev/yui3-gallery/issues</a></p>
<p>I also would need an example page, which fails.</p>
<p>Iliyan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daniel R</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-586589</link>
		<dc:creator>Daniel R</dc:creator>
		<pubDate>Tue, 24 Nov 2009 20:49:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-586589</guid>
		<description>Hi Iliyan, 

   Thanks for sharing your accordion YUI code. I believe I&#039;ve discovered a bug in it.

   I took me some time to discover what it was, but you can easily replicate it, not to mention its likely to be a hot spot for other users. 

  If a page has a Google AdSense snippet it fails to trigger accordion events(e.g. no collapse, etc), I have no idea why it clashes since I&#039;m not familiar with the code base, but here is what I managed to track down. 

   I noticed the accordion elements are assigned an ID upon rendering (id=&quot;yui_3_0_0-2-125909465912878&quot;) which I assume are used trigger the accordion events. But for some reason, having the following AdSense code snippet anywhere on the page fails to create these ids: 





This is standard JavaScript and is likely to be common in many pages. Perhaps a name clash of some sort in the accordion code? I&#039;ve tried it with the sample page http://ipeychev.github.com/yui3-gallery/gallery-accordion/build_from_markup_window.html , if you place this Google snippet anywhere inside the page the accordion fails to trigger events.</description>
		<content:encoded><![CDATA[<p>Hi Iliyan, </p>
<p>   Thanks for sharing your accordion YUI code. I believe I&#8217;ve discovered a bug in it.</p>
<p>   I took me some time to discover what it was, but you can easily replicate it, not to mention its likely to be a hot spot for other users. </p>
<p>  If a page has a Google AdSense snippet it fails to trigger accordion events(e.g. no collapse, etc), I have no idea why it clashes since I&#8217;m not familiar with the code base, but here is what I managed to track down. </p>
<p>   I noticed the accordion elements are assigned an ID upon rendering (id=&#8221;yui_3_0_0-2-125909465912878&#8243;) which I assume are used trigger the accordion events. But for some reason, having the following AdSense code snippet anywhere on the page fails to create these ids: </p>
<p>This is standard JavaScript and is likely to be common in many pages. Perhaps a name clash of some sort in the accordion code? I&#8217;ve tried it with the sample page <a href="http://ipeychev.github.com/yui3-gallery/gallery-accordion/build_from_markup_window.html" rel="nofollow">http://ipeychev.github.com/yui3-gallery/gallery-accordion/build_from_markup_window.html</a> , if you place this Google snippet anywhere inside the page the accordion fails to trigger events.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ken</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-586120</link>
		<dc:creator>Ken</dc:creator>
		<pubDate>Mon, 09 Nov 2009 08:02:05 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-586120</guid>
		<description>Hi,

I just started a website and have been attempting to learn how to add tabs to the sidebar to capture my wordpress categories and selected pages.  

I was experimenting with &quot;Tabifier&quot; at 
http://www.barelyfitz.com/projects/tabber/ and not having much success.  I then came across Yahoo Developer and wanted to know if there is any type of paid support offered to help me over the hump with setting up tabbed sidebar navigation?

A sample site that I&#039;m modeling for the tabs is:
http://www.netprofitstoday.com/blog/

Kind Regards,
Ken</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I just started a website and have been attempting to learn how to add tabs to the sidebar to capture my wordpress categories and selected pages.  </p>
<p>I was experimenting with &#8220;Tabifier&#8221; at<br />
<a href="http://www.barelyfitz.com/projects/tabber/" rel="nofollow">http://www.barelyfitz.com/projects/tabber/</a> and not having much success.  I then came across Yahoo Developer and wanted to know if there is any type of paid support offered to help me over the hump with setting up tabbed sidebar navigation?</p>
<p>A sample site that I&#8217;m modeling for the tabs is:<br />
<a href="http://www.netprofitstoday.com/blog/" rel="nofollow">http://www.netprofitstoday.com/blog/</a></p>
<p>Kind Regards,<br />
Ken</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-585979</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 04 Nov 2009 21:55:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-585979</guid>
		<description>Silly me...I had a typo in my script. Thanks for the help!</description>
		<content:encoded><![CDATA[<p>Silly me&#8230;I had a typo in my script. Thanks for the help!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Iliyan Peychev</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-585977</link>
		<dc:creator>Iliyan Peychev</dc:creator>
		<pubDate>Wed, 04 Nov 2009 21:44:31 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-585977</guid>
		<description>Dave,

Set it in this way:
var accordion = new Y.Accordion({
    reorderItems: false
    // other config properties
});

Drag&amp;Drop files are required. If &quot;combine&quot; property in your YUI instance is true (this is the default value), they will be loaded together with the other js files.

Iliyan</description>
		<content:encoded><![CDATA[<p>Dave,</p>
<p>Set it in this way:<br />
var accordion = new Y.Accordion({<br />
    reorderItems: false<br />
    // other config properties<br />
});</p>
<p>Drag&amp;Drop files are required. If &#8220;combine&#8221; property in your YUI instance is true (this is the default value), they will be loaded together with the other js files.</p>
<p>Iliyan</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Dave</title>
		<link>http://www.yuiblog.com/blog/2009/11/04/yui-3-gallery-accordion-widget/comment-page-1/#comment-585972</link>
		<dc:creator>Dave</dc:creator>
		<pubDate>Wed, 04 Nov 2009 20:08:50 +0000</pubDate>
		<guid isPermaLink="false">http://www.yuiblog.com/blog/?p=775#comment-585972</guid>
		<description>I&#039;m interested in using this, for sure. However, I&#039;m having trouble setting reorderItems to false. How do I properly do this?

Similarly, is it possible to not have all of the Drag-and-drop js files from YUI load? Would this make it faster for the user?

Thanks for the great work!</description>
		<content:encoded><![CDATA[<p>I&#8217;m interested in using this, for sure. However, I&#8217;m having trouble setting reorderItems to false. How do I properly do this?</p>
<p>Similarly, is it possible to not have all of the Drag-and-drop js files from YUI load? Would this make it faster for the user?</p>
<p>Thanks for the great work!</p>
]]></content:encoded>
	</item>
</channel>
</rss>

