<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Quick Fix: FieldSet Title Truncation</title>
	<atom:link href="http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/feed/" rel="self" type="application/rss+xml" />
	<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/</link>
	<description>actionscript, flex, flash and other fun stuff</description>
	<lastBuildDate>Sat, 14 Nov 2009 16:04:03 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4630</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Tue, 16 Dec 2008 17:17:45 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4630</guid>
		<description>Thanks for pointing the issue out.  That was a major flaw in my default styling scheme.  I guessed it never dawned on me that people might wanna override the default styling without having to assign every property.  Glad it works for you.</description>
		<content:encoded><![CDATA[<p>Thanks for pointing the issue out.  That was a major flaw in my default styling scheme.  I guessed it never dawned on me that people might wanna override the default styling without having to assign every property.  Glad it works for you.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4627</link>
		<dc:creator>Devin</dc:creator>
		<pubDate>Tue, 16 Dec 2008 01:55:06 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4627</guid>
		<description>Works great.  The main things I wanted to was override the padding, cornerRadius, and titleStyleName in a css declaration and leave rest defaulted. And no problems so far. Thanks!</description>
		<content:encoded><![CDATA[<p>Works great.  The main things I wanted to was override the padding, cornerRadius, and titleStyleName in a css declaration and leave rest defaulted. And no problems so far. Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4617</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Mon, 15 Dec 2008 05:21:26 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4617</guid>
		<description>ok added new download to project home - http://code.google.com/p/jwopitz-lib/downloads/list

Let me know if there are any bugs or anything.  I gave it a pretty good once-over.</description>
		<content:encoded><![CDATA[<p>ok added new download to project home &#8211; <a href="http://code.google.com/p/jwopitz-lib/downloads/list" rel="nofollow">http://code.google.com/p/jwopitz-lib/downloads/list</a></p>
<p>Let me know if there are any bugs or anything.  I gave it a pretty good once-over.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4616</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Mon, 15 Dec 2008 05:09:40 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4616</guid>
		<description>Ok I have checked in the changes to the main trunk.</description>
		<content:encoded><![CDATA[<p>Ok I have checked in the changes to the main trunk.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4615</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Mon, 15 Dec 2008 00:42:03 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4615</guid>
		<description>Hi Devin.

Thanks for posting the source.  Since you are declaring a class style called FieldSet, you are overriding the default styling of the same name in the component.  If you decide to still use this name, for now, you would have to set all styles on the FieldSet within the style declaration.  This is what is happening inside the FieldSet:

if (!StyleManager.getStyleDeclaration(&#039;FieldSet&#039;))
			{
				var tsn:CSSStyleDeclaration = new CSSStyleDeclaration();
				tsn.setStyle(&#039;fontWeight&#039;, &#039;bold&#039;);

				var s:CSSStyleDeclaration = new CSSStyleDeclaration();
				s.setStyle(&#039;borderStyle&#039;, &#039;solid&#039;);
				s.setStyle(&#039;borderSkin&#039;, FieldSetBorder);
				s.setStyle(&#039;backgroundColor&#039;, 0xFFFFFF);
				s.setStyle(&#039;backgroundAlpha&#039;, 0.0);

				s.setStyle(&#039;paddingLeft&#039;, 2);
				s.setStyle(&#039;paddingRight&#039;, 2);
				s.setStyle(&#039;paddingTop&#039;, 2);
				s.setStyle(&#039;paddingBottom&#039;, 2);

				s.setStyle(&#039;titleAlign&#039;, &#039;left&#039;);
				s.setStyle(&#039;titleGap&#039;, 2);
				s.setStyle(&#039;titlePlacement&#039;, &#039;top&#039;);
				s.setStyle(&#039;titleStyleName&#039;, tsn);

				StyleManager.setStyleDeclaration(&#039;FieldSet&#039;, s, true);
			}

I probably need to adjust that so that a user can use the class name and still retain values the user has decided to NOT declare.  Thanks for pointing this out as it shows a flaw in my approach.</description>
		<content:encoded><![CDATA[<p>Hi Devin.</p>
<p>Thanks for posting the source.  Since you are declaring a class style called FieldSet, you are overriding the default styling of the same name in the component.  If you decide to still use this name, for now, you would have to set all styles on the FieldSet within the style declaration.  This is what is happening inside the FieldSet:</p>
<p>if (!StyleManager.getStyleDeclaration(&#8216;FieldSet&#8217;))<br />
			{<br />
				var tsn:CSSStyleDeclaration = new CSSStyleDeclaration();<br />
				tsn.setStyle(&#8216;fontWeight&#8217;, &#8216;bold&#8217;);</p>
<p>				var s:CSSStyleDeclaration = new CSSStyleDeclaration();<br />
				s.setStyle(&#8216;borderStyle&#8217;, &#8217;solid&#8217;);<br />
				s.setStyle(&#8216;borderSkin&#8217;, FieldSetBorder);<br />
				s.setStyle(&#8216;backgroundColor&#8217;, 0xFFFFFF);<br />
				s.setStyle(&#8216;backgroundAlpha&#8217;, 0.0);</p>
<p>				s.setStyle(&#8216;paddingLeft&#8217;, 2);<br />
				s.setStyle(&#8216;paddingRight&#8217;, 2);<br />
				s.setStyle(&#8216;paddingTop&#8217;, 2);<br />
				s.setStyle(&#8216;paddingBottom&#8217;, 2);</p>
<p>				s.setStyle(&#8216;titleAlign&#8217;, &#8216;left&#8217;);<br />
				s.setStyle(&#8216;titleGap&#8217;, 2);<br />
				s.setStyle(&#8216;titlePlacement&#8217;, &#8216;top&#8217;);<br />
				s.setStyle(&#8216;titleStyleName&#8217;, tsn);</p>
<p>				StyleManager.setStyleDeclaration(&#8216;FieldSet&#8217;, s, true);<br />
			}</p>
<p>I probably need to adjust that so that a user can use the class name and still retain values the user has decided to NOT declare.  Thanks for pointing this out as it shows a flaw in my approach.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4614</link>
		<dc:creator>Devin</dc:creator>
		<pubDate>Sun, 14 Dec 2008 07:26:04 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4614</guid>
		<description>Sure. I&#039;m using SDK 3.2 along with FP10. I created a small test case with view source enabled at http://www.shinynet.com/fieldset/main.html

This is what I see happening.  

If you add a FieldSet{} style declaration, the fieldset doesn&#039;t render anything at all.

If you add a minimum of border-style:solid, the border will render, but that&#039;s it, no title.

To get the title to render, you have add, at minimum, title-gap. However, that renders the title too far down into the content area.

btw, your TileCanvas thing looks sweet. It might be what I&#039;ve been looking for in a dashboard layout engine :)</description>
		<content:encoded><![CDATA[<p>Sure. I&#8217;m using SDK 3.2 along with FP10. I created a small test case with view source enabled at <a href="http://www.shinynet.com/fieldset/main.html" rel="nofollow">http://www.shinynet.com/fieldset/main.html</a></p>
<p>This is what I see happening.  </p>
<p>If you add a FieldSet{} style declaration, the fieldset doesn&#8217;t render anything at all.</p>
<p>If you add a minimum of border-style:solid, the border will render, but that&#8217;s it, no title.</p>
<p>To get the title to render, you have add, at minimum, title-gap. However, that renders the title too far down into the content area.</p>
<p>btw, your TileCanvas thing looks sweet. It might be what I&#8217;ve been looking for in a dashboard layout engine <img src='http://s.wordpress.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4613</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Sun, 14 Dec 2008 05:44:56 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4613</guid>
		<description>Devin.  Thanks for the feedback.  Can you send me your sample application code so that I can test this.  Also what version of Flex Builder are you using, which Flash player version.  Just want to make sure I can recreate the problem.  Thanks.</description>
		<content:encoded><![CDATA[<p>Devin.  Thanks for the feedback.  Can you send me your sample application code so that I can test this.  Also what version of Flex Builder are you using, which Flash player version.  Just want to make sure I can recreate the problem.  Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Devin</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4612</link>
		<dc:creator>Devin</dc:creator>
		<pubDate>Sat, 13 Dec 2008 22:47:58 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-4612</guid>
		<description>I can&#039;t get this to work at all when specifying the styles in an external .css file.  If I do nothing other than:

FieldSet
{

}

the fieldset doesn&#039;t render at all.  Your default styles aren&#039;t kicking in. So I copied all the styles (borderStyle most importantly) into the .css file... and now it renders, except the title is floating down inside the actual content.</description>
		<content:encoded><![CDATA[<p>I can&#8217;t get this to work at all when specifying the styles in an external .css file.  If I do nothing other than:</p>
<p>FieldSet<br />
{</p>
<p>}</p>
<p>the fieldset doesn&#8217;t render at all.  Your default styles aren&#8217;t kicking in. So I copied all the styles (borderStyle most importantly) into the .css file&#8230; and now it renders, except the title is floating down inside the actual content.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: s</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-3983</link>
		<dc:creator>s</dc:creator>
		<pubDate>Thu, 21 Feb 2008 18:18:14 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-3983</guid>
		<description>Thank you for your response. Great component by the way...I find it very valuable since I have not come across anything like it. I&#039;ve implemented it into a project and it works perfectly in Flex 2 but once it is compiled in Flex Beta 3 the container widths change which in turn causes scrollbars to appear around the container. Any idea why or any help would be appreciated...thanks!</description>
		<content:encoded><![CDATA[<p>Thank you for your response. Great component by the way&#8230;I find it very valuable since I have not come across anything like it. I&#8217;ve implemented it into a project and it works perfectly in Flex 2 but once it is compiled in Flex Beta 3 the container widths change which in turn causes scrollbars to appear around the container. Any idea why or any help would be appreciated&#8230;thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jwopitz</title>
		<link>http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-3978</link>
		<dc:creator>jwopitz</dc:creator>
		<pubDate>Wed, 20 Feb 2008 16:44:12 +0000</pubDate>
		<guid isPermaLink="false">http://jwopitz.wordpress.com/2007/08/23/quick-fix-fieldset-title-truncation/#comment-3978</guid>
		<description>I haven&#039;t tried it in Flex 3.  I have been rather lazy getting around to using FB3.  Assuming that they haven&#039;t radically changed the internal workings of the underlying classes utilized in this component, I don&#039;t see why it wouldn&#039;t work.</description>
		<content:encoded><![CDATA[<p>I haven&#8217;t tried it in Flex 3.  I have been rather lazy getting around to using FB3.  Assuming that they haven&#8217;t radically changed the internal workings of the underlying classes utilized in this component, I don&#8217;t see why it wouldn&#8217;t work.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
