<?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: Disabling dividers in an HDividedBox container in Flex</title>
	<atom:link href="http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/</link>
	<description>Just a bunch of Adobe Flex Examples</description>
	<lastBuildDate>Sun, 12 Feb 2012 14:19:03 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Saurabh Jain</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-9324</link>
		<dc:creator>Saurabh Jain</dc:creator>
		<pubDate>Tue, 21 Jun 2011 07:05:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-9324</guid>
		<description>Thank you so much Peter, this is exactly what I was looking for. Your site are always helpful for my flex needs. Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you so much Peter, this is exactly what I was looking for. Your site are always helpful for my flex needs. Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kristofer Joseph</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-4342</link>
		<dc:creator>Kristofer Joseph</dc:creator>
		<pubDate>Mon, 29 Jun 2009 19:17:34 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-4342</guid>
		<description>I would actually recommend using styles to hide the HDividedBox divider. You can do so by setting the divider-affordance and the divider-thickness. You can also adjust the gap between the divided children by setting the horizontal-gap style. Much more extensible than looping over the dividers with getDivider yourself.

You can do this globally for all HDividedBoxs with a style like this:
&lt;pre class=&quot;code&quot;&gt;
HDividedBox
{
    horizontal-gap: 3;
    divider-affordance: 1;
    divider-thickness: 1;
}
&lt;/pre&gt;

Or just a subset by setting a style name like so:
&lt;pre class=&quot;code&quot;&gt;
HDividedBox.mainViewHDividedBox
{
    horizontal-gap: 3;
    divider-affordance: 1;
    divider-thickness: 1;
}
&lt;/pre&gt;

our HDividedBox would just need to have it&#039;s stylename property set to mainViewHDividedBox like:</description>
		<content:encoded><![CDATA[<p>I would actually recommend using styles to hide the HDividedBox divider. You can do so by setting the divider-affordance and the divider-thickness. You can also adjust the gap between the divided children by setting the horizontal-gap style. Much more extensible than looping over the dividers with getDivider yourself.</p>
<p>You can do this globally for all HDividedBoxs with a style like this:</p>
<pre class="code">
HDividedBox
{
    horizontal-gap: 3;
    divider-affordance: 1;
    divider-thickness: 1;
}
</pre>
<p>Or just a subset by setting a style name like so:</p>
<pre class="code">
HDividedBox.mainViewHDividedBox
{
    horizontal-gap: 3;
    divider-affordance: 1;
    divider-thickness: 1;
}
</pre>
<p>our HDividedBox would just need to have it&#8217;s stylename property set to mainViewHDividedBox like:</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Anonymous</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3905</link>
		<dc:creator>Anonymous</dc:creator>
		<pubDate>Fri, 15 May 2009 07:29:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3905</guid>
		<description>Its very nice example which exactly suits my requirement. Thanks</description>
		<content:encoded><![CDATA[<p>Its very nice example which exactly suits my requirement. Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bengee</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3899</link>
		<dc:creator>bengee</dc:creator>
		<pubDate>Thu, 23 Apr 2009 12:13:12 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3899</guid>
		<description>without the option of the checkbox offcourse excuse me .</description>
		<content:encoded><![CDATA[<p>without the option of the checkbox offcourse excuse me .</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bengee</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3897</link>
		<dc:creator>bengee</dc:creator>
		<pubDate>Thu, 23 Apr 2009 12:12:10 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3897</guid>
		<description>Thank you very much !! but i got one little stupid question :(

in you example you always make a checkbox but i want it to implement without offcourse the checkbox; What do i have to do in the code so it will run with the option of the checkbox









What do we have to change in de script ?? Thank you for the help !!</description>
		<content:encoded><![CDATA[<p>Thank you very much !! but i got one little stupid question :(</p>
<p>in you example you always make a checkbox but i want it to implement without offcourse the checkbox; What do i have to do in the code so it will run with the option of the checkbox</p>
<p>What do we have to change in de script ?? Thank you for the help !!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jürgen</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3898</link>
		<dc:creator>Jürgen</dc:creator>
		<pubDate>Thu, 23 Apr 2009 11:16:54 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3898</guid>
		<description>Thanks for this example, i was looking for this problem.</description>
		<content:encoded><![CDATA[<p>Thanks for this example, i was looking for this problem.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3900</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Thu, 02 Apr 2009 12:39:56 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3900</guid>
		<description>This is great but I wish there was an easier way. It would be great if the HDividedBox simply had a boolean toggle to show/hide all the resize bars.</description>
		<content:encoded><![CDATA[<p>This is great but I wish there was an easier way. It would be great if the HDividedBox simply had a boolean toggle to show/hide all the resize bars.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3901</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Fri, 19 Dec 2008 17:14:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3901</guid>
		<description>Thank you so much Peter, this is exactly what I was looking for.  You and your site are always so helpful for my flex needs.  Thank you!</description>
		<content:encoded><![CDATA[<p>Thank you so much Peter, this is exactly what I was looking for.  You and your site are always so helpful for my flex needs.  Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: coulx</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3904</link>
		<dc:creator>coulx</dc:creator>
		<pubDate>Tue, 28 Oct 2008 16:44:48 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3904</guid>
		<description>What if we wanted to make each hbox collapsable when clicked on to lets say 20px. The last hbox can not be collapsed because the HDividedBox  wont resize automaticaly. That would be a good demo to show.</description>
		<content:encoded><![CDATA[<p>What if we wanted to make each hbox collapsable when clicked on to lets say 20px. The last hbox can not be collapsed because the HDividedBox  wont resize automaticaly. That would be a good demo to show.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: peterd</title>
		<link>http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/comment-page-1/#comment-3903</link>
		<dc:creator>peterd</dc:creator>
		<pubDate>Tue, 14 Oct 2008 14:25:43 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/10/11/disabling-dividers-in-an-hdividedbox-container-in-flex/#comment-3903</guid>
		<description>Luis Ramos,

Sorry, I don&#039;t believe it is possible to set separate horizontal gap widths in an HDividedBox or HBox container.
You could try filing an enhancement request at http://bugs.adobe.com/flex/

Peter</description>
		<content:encoded><![CDATA[<p>Luis Ramos,</p>
<p>Sorry, I don&#8217;t believe it is possible to set separate horizontal gap widths in an HDividedBox or HBox container.<br />
You could try filing an enhancement request at <a href="http://bugs.adobe.com/flex/" rel="nofollow">http://bugs.adobe.com/flex/</a></p>
<p>Peter</p>
]]></content:encoded>
	</item>
</channel>
</rss>

