﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>Coolite Forums / Coolite Toolkit / *Premium Help*  / [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text / Latest Posts</title><generator>InstantForum.NET v4.1.4</generator><description>Coolite Forums</description><link>http://www.coolite.com/forums/</link><webMaster>do-not-reply@coolite.com</webMaster><lastBuildDate>Tue, 07 Sep 2010 22:58:53 GMT</lastBuildDate><ttl>20</ttl><item><title>RE: [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description> Perfect - I did not consider that the FieldSet was inherited from the Panel.  I added the Layout=Form and was able to remove the outer panel.  &lt;br&gt;&lt;br&gt;I originally had the outer panel because I was working with a Column layout and needed to set the ColumnWidth.  I moved the ColumnWidth to the FieldSet and it works great.&lt;br&gt;&lt;br&gt;Thanks!&lt;br&gt;</description><pubDate>Mon, 08 Mar 2010 07:26:40 GMT</pubDate><dc:creator>bsnezw</dc:creator></item><item><title>RE: [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description>Hi,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Please set Layout="Form" for the FieldSet.&lt;/div&gt;&lt;div&gt;It is preferable to use FieldLabel inside FormLayout always (if possible)&lt;/div&gt;</description><pubDate>Sun, 07 Mar 2010 14:28:35 GMT</pubDate><dc:creator>vladsch</dc:creator></item><item><title>RE: [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description>Thanks for the update. We're investigating. &lt;div&gt;&lt;br&gt;&lt;/div&gt;</description><pubDate>Fri, 05 Mar 2010 10:24:04 GMT</pubDate><dc:creator>geoffrey.mcgill</dc:creator></item><item><title>RE: [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description>Arrows have been added to the gif and I've added a standard form panel for each example to show what I expect vs what is actually rendering.  &lt;br&gt;&lt;br&gt;&lt;u&gt;Example 1&lt;/u&gt;&lt;br&gt;&lt;br&gt;Draw a line straight accross you will see the that Text for each label is not aligned with the FieldLabel.  &lt;br&gt;Note in the Standard Form Panel for example 1, this is not an issue&lt;br&gt;&lt;br&gt;[code]&lt;br&gt;&amp;lt;ext:Panel ID="Panel2" runat="server" Border="false" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:FieldSet ID="FieldSet1" runat="server" LabelWidth="120" Border="true" Width="400"&lt;br&gt;                        Title="Example 1 in FieldSet"  &amp;gt;&lt;br&gt;            &amp;lt;Items&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="lblRoutingNo" runat="server" FieldLabel="ABA Routing No." Text="123456" /&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="lblBeneficiaryName" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;            &amp;lt;/Items&amp;gt;&lt;br&gt;        &amp;lt;/ext:FieldSet&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;ext:Panel ID="Panel3" runat="server" Border="false" Title="Example 1 Standard Form Panel" Layout="Form" Width="400" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:Label ID="Label3" runat="server" FieldLabel="ABA Routing No." Text="123456" /&amp;gt;&lt;br&gt;        &amp;lt;ext:Label ID="Label4" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;[/code]&lt;br&gt;&lt;br&gt;&lt;u&gt;Example 2&lt;/u&gt;&lt;br&gt;&lt;br&gt;ABA Routing text should be "" and the Beneficiary text = "This Company Name" but when it is rendered "This Company Name" is showing in the ABA Routing. &lt;br&gt;Note in the Standard Form Panel for example 2, this is not an issue&lt;br&gt;&lt;br&gt;[code]&lt;br&gt;&amp;lt;ext:Panel ID="Panel1" runat="server" Border="false" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:FieldSet ID="FieldSet2" runat="server" LabelWidth="120" Border="true" Width="400"&lt;br&gt;                        Title="Example 2 in Fieldset"  &amp;gt;&lt;br&gt;            &amp;lt;Items&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="Label1" runat="server" FieldLabel="ABA Routing No." Text="" /&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="Label2" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;            &amp;lt;/Items&amp;gt;&lt;br&gt;        &amp;lt;/ext:FieldSet&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;ext:Panel ID="Panel4" runat="server" Border="false" Layout="Form" width="400" Title="Example 2 Standard Form Panel" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:Label ID="Label5" runat="server" FieldLabel="ABA Routing No." Text="" /&amp;gt;&lt;br&gt;        &amp;lt;ext:Label ID="Label6" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;[/code]&lt;br&gt;</description><pubDate>Fri, 05 Mar 2010 09:48:50 GMT</pubDate><dc:creator>bsnezw</dc:creator></item><item><title>RE: [SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description>Hi bsnezw,&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;I'm sorry but I don't see the issue here. The FieldLabels in the screen capture you sent appear to align properly. &lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;&lt;div&gt;Can you provide more details?&lt;/div&gt;&lt;div&gt;&lt;br&gt;&lt;/div&gt;</description><pubDate>Fri, 05 Mar 2010 09:21:37 GMT</pubDate><dc:creator>geoffrey.mcgill</dc:creator></item><item><title>[SOLVED] [1.0] Fieldset Label ctrl FieldLabel not lining up with Text</title><link>http://www.coolite.com/forums/Topic28735-16-1.aspx</link><description> I am using the field set and 2 ext:Labels.  The FieldLabel and the text does not line up correctly.  Here is really simple code placed on a WebContentpage&lt;br&gt;&lt;br&gt;[code]&lt;br&gt;&lt;br&gt;&amp;lt;ext:Panel ID="Panel2" runat="server" Border="false" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:FieldSet ID="FieldSet1" runat="server" LabelWidth="120" Border="true" Width="400"&lt;br&gt;                        Title="ACH Account Detail"  &amp;gt;&lt;br&gt;            &amp;lt;Items&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="lblRoutingNo" runat="server" FieldLabel="ABA Routing No." Text="123456" /&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="lblBeneficiaryName" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;            &amp;lt;/Items&amp;gt;&lt;br&gt;        &amp;lt;/ext:FieldSet&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;&lt;br&gt;&amp;lt;ext:Panel ID="Panel1" runat="server" Border="false" &amp;gt;&lt;br&gt;    &amp;lt;Items&amp;gt;&lt;br&gt;        &amp;lt;ext:FieldSet ID="FieldSet2" runat="server" LabelWidth="120" Border="true" Width="400"&lt;br&gt;                        Title="ACH Account Detail"  &amp;gt;&lt;br&gt;            &amp;lt;Items&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="Label1" runat="server" FieldLabel="ABA Routing No." Text="" /&amp;gt;&lt;br&gt;                &amp;lt;ext:Label ID="Label2" runat="server" FieldLabel="Beneficiary" Text ="This Company Name" /&amp;gt;&lt;br&gt;            &amp;lt;/Items&amp;gt;&lt;br&gt;        &amp;lt;/ext:FieldSet&amp;gt;&lt;br&gt;    &amp;lt;/Items&amp;gt;&lt;br&gt;&amp;lt;/ext:Panel&amp;gt;&lt;br&gt;&lt;br&gt;[/code] &lt;br&gt;&lt;br&gt;Attached are the results for each fieldset.  How do I correct it so the FieldLabel and the associated text lines up correctly?&lt;br&gt;&lt;br&gt;Thanks! &lt;br&gt;</description><pubDate>Fri, 05 Mar 2010 08:04:58 GMT</pubDate><dc:creator>bsnezw</dc:creator></item></channel></rss>