<?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: Setting the border thickness in a Flex Panel container</title>
	<atom:link href="http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/</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: Demmie</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-10058</link>
		<dc:creator>Demmie</dc:creator>
		<pubDate>Mon, 17 Oct 2011 16:37:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-10058</guid>
		<description>thanks a ton for this example.</description>
		<content:encoded><![CDATA[<p>thanks a ton for this example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sankara narayanan</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-8268</link>
		<dc:creator>Sankara narayanan</dc:creator>
		<pubDate>Fri, 27 Aug 2010 08:59:04 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-8268</guid>
		<description>@Peter,
Will file a bug soon.
Thanks.
Reagrds,
Sankara narayanan Ekambaranathan.</description>
		<content:encoded><![CDATA[<p>@Peter,<br />
Will file a bug soon.<br />
Thanks.<br />
Reagrds,<br />
Sankara narayanan Ekambaranathan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Peter deHaan</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-8260</link>
		<dc:creator>Peter deHaan</dc:creator>
		<pubDate>Thu, 26 Aug 2010 15:10:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-8260</guid>
		<description>@Sankara narayanan,

I can see the issue in Flex 3.5, but cannot see a workaround apart from changing the borderWidth to 2px (which still shrinks to 1px at certain widths).

Can you please file a bug at http://bugs.adobe.com/flex/ and attach your test case above.

Thanks,
Peter</description>
		<content:encoded><![CDATA[<p>@Sankara narayanan,</p>
<p>I can see the issue in Flex 3.5, but cannot see a workaround apart from changing the borderWidth to 2px (which still shrinks to 1px at certain widths).</p>
<p>Can you please file a bug at <a href="http://bugs.adobe.com/flex/" rel="nofollow">http://bugs.adobe.com/flex/</a> and attach your test case above.</p>
<p>Thanks,<br />
Peter</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sankara narayanan</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-8259</link>
		<dc:creator>Sankara narayanan</dc:creator>
		<pubDate>Thu, 26 Aug 2010 08:17:17 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-8259</guid>
		<description>Hi Peter,
I have set borders gor my grid items.
But when i resize the application, the border also got resized.
(in some cases the border disappears too ! I thought , the grid items got overlapped !! But it is not actually.)
How can i avoid this ?
My code goes like :
&lt;pre lang=&quot;mxml&quot;&gt;
&lt;?xml version=&quot;1.0&quot; encoding=&quot;utf-8&quot;?&gt;
&lt;mx:Application xmlns:mx=&quot;http://www.adobe.com/2006/mxml&quot; 
                layout=&quot;vertical&quot; xmlns:Test=&quot;Test.*&quot; 
                xmlns:components=&quot;components.*&quot; backgroundColor=&quot;#FFFFFF&quot;&gt;
    
    &lt;mx:Style&gt;

        .myGridItem
        {
            background-color : #F1F7F3;
            border-color: #70B794;
            border-sides : right,bottom;
            border-style :solid;
            border-thickness : 1;
            color: #000000;
            vertical-align : middle;
        }
        
    &lt;/mx:Style&gt;
    
    &lt;mx:Grid width=&quot;100%&quot; horizontalGap=&quot;0&quot; verticalGap=&quot;0&quot;&gt;
        &lt;mx:GridRow width=&quot;100%&quot;&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
        &lt;/mx:GridRow&gt;
        &lt;mx:GridRow width=&quot;100%&quot;&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
        &lt;/mx:GridRow&gt;
        &lt;mx:GridRow width=&quot;100%&quot;&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
        &lt;/mx:GridRow&gt;
        &lt;mx:GridRow width=&quot;100%&quot;&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;DATE VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;14%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
            &lt;mx:GridItem width=&quot;36%&quot; styleName=&quot;myGridItem&quot;&gt;
                &lt;mx:Text text=&quot;AMOUNT VALUE&quot;/&gt;
            &lt;/mx:GridItem&gt;
        &lt;/mx:GridRow&gt;
    &lt;/mx:Grid&gt;
    
&lt;/mx:Application&gt;
&lt;/pre&gt;


Thanks in advance.
Reagrds,
Sankara narayanan Ekambaranathan.</description>
		<content:encoded><![CDATA[<p>Hi Peter,<br />
I have set borders gor my grid items.<br />
But when i resize the application, the border also got resized.<br />
(in some cases the border disappears too ! I thought , the grid items got overlapped !! But it is not actually.)<br />
How can i avoid this ?<br />
My code goes like :</p>

<div class="wp_syntax"><div class="code"><pre class="mxml" style="font-family:monospace;"><span style="color: #000000;">&lt;?xml version=<span style="color: #ff0000;">&quot;1.0&quot;</span> encoding=<span style="color: #ff0000;">&quot;utf-8&quot;</span>?<span style="color: #7400FF;">&gt;</span></span>
<span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Application</span> xmlns:mx=<span style="color: #ff0000;">&quot;http://www.adobe.com/2006/mxml&quot;</span> </span>
<span style="color: #000000;">                layout=<span style="color: #ff0000;">&quot;vertical&quot;</span> xmlns:Test=<span style="color: #ff0000;">&quot;Test.*&quot;</span> </span>
<span style="color: #000000;">                xmlns:components=<span style="color: #ff0000;">&quot;components.*&quot;</span> backgroundColor=<span style="color: #ff0000;">&quot;#FFFFFF&quot;</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Style</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
        .myGridItem
        {
            background-color : #F1F7F3;
            border-color: #70B794;
            border-sides : right,bottom;
            border-style :solid;
            border-thickness : 1;
            color: #000000;
            vertical-align : middle;
        }
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Style</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Grid</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span> horizontalGap=<span style="color: #ff0000;">&quot;0&quot;</span> verticalGap=<span style="color: #ff0000;">&quot;0&quot;</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridRow</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridRow</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridRow</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridRow</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridRow</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridRow</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridRow</span> width=<span style="color: #ff0000;">&quot;100%&quot;</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;DATE VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;14%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:GridItem</span> width=<span style="color: #ff0000;">&quot;36%&quot;</span> styleName=<span style="color: #ff0000;">&quot;myGridItem&quot;</span><span style="color: #7400FF;">&gt;</span></span>
                <span style="color: #000000;"><span style="color: #7400FF;">&lt;mx:Text</span> text=<span style="color: #ff0000;">&quot;AMOUNT VALUE&quot;</span><span style="color: #7400FF;">/&gt;</span></span>
            <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridItem</span><span style="color: #7400FF;">&gt;</span></span>
        <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:GridRow</span><span style="color: #7400FF;">&gt;</span></span>
    <span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Grid</span><span style="color: #7400FF;">&gt;</span></span>
&nbsp;
<span style="color: #000000;"><span style="color: #7400FF;">&lt;/mx:Application</span><span style="color: #7400FF;">&gt;</span></span></pre></div></div>

<p>Thanks in advance.<br />
Reagrds,<br />
Sankara narayanan Ekambaranathan.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Brian</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-8122</link>
		<dc:creator>Brian</dc:creator>
		<pubDate>Fri, 16 Jul 2010 18:17:15 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-8122</guid>
		<description>Hi Radek

There e is a side effect to using negative values. 
As the panels top border is reduced, it overlaps the actual panel itself, and in my case, mouse events at the top 
of the panel stopped being triggered. Took me ages to figure out until I increased the top border value  (strange but true!!).

Brian</description>
		<content:encoded><![CDATA[<p>Hi Radek</p>
<p>There e is a side effect to using negative values.<br />
As the panels top border is reduced, it overlaps the actual panel itself, and in my case, mouse events at the top<br />
of the panel stopped being triggered. Took me ages to figure out until I increased the top border value  (strange but true!!).</p>
<p>Brian</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: flexet</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-7277</link>
		<dc:creator>flexet</dc:creator>
		<pubDate>Wed, 17 Mar 2010 10:01:44 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-7277</guid>
		<description>Thanks for this example. Saved time :)</description>
		<content:encoded><![CDATA[<p>Thanks for this example. Saved time :)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: radek</title>
		<link>http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/comment-page-1/#comment-2275</link>
		<dc:creator>radek</dc:creator>
		<pubDate>Mon, 02 Mar 2009 18:31:47 +0000</pubDate>
		<guid isPermaLink="false">http://blog.flexexamples.com/2008/01/12/setting-the-border-thickness-in-a-flex-panel-container/#comment-2275</guid>
		<description>I try to set &#039;-&#039; value, and its work :) for example borderThicknessTop=&quot;-10&quot; !</description>
		<content:encoded><![CDATA[<p>I try to set &#8216;-&#8217; value, and its work :) for example borderThicknessTop=&#8221;-10&#8243; !</p>
]]></content:encoded>
	</item>
</channel>
</rss>

