CompositeField Note problem

  1. #1

    CompositeField Note problem

    Hi,

    In WebForm2.aspx below there are 3 composite fields with notes. The one at the top renders in a strange way (See attachment). The other two renders perfectly. When I remove the notes of the items in the first composite field rendering is ok.

    Thanks,

    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm2.aspx.cs" Inherits="TestWebApp.WebForm2" %>
    
    <%@ Register Assembly="Ext.Net" Namespace="Ext.Net" TagPrefix="ext" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form id="form1" runat="server">
        
            <ext:Store ID="Store1" runat="server">
            </ext:Store>
            <ext:ResourceManager ID="ResourceManager1" runat="server">
            </ext:ResourceManager>
            <ext:Viewport ID="Viewport1" runat="server" AutoDoLayout="true">
                <Items>
                    <ext:BorderLayout ID="BorderLayout1" runat="server" StyleSpec="background-color:transparent;">
                        <North Collapsible="True" CMarginsSummary="0 0 0 0">
                            <ext:FormPanel ID="panMain" runat="server" Title="" Border="true" BodyStyle="padding:5px;"
                                AutoHeight="true" ButtonAlign="Left" Width="500">
                                <Items>
                                    <ext:CompositeField ID="MultiField1" runat="server" FieldLabel="Name">
                                        <Items>
                                            <ext:TextField ID="txt1" runat="server" Width="100" Note="Note1">
                                            </ext:TextField>
                                            <ext:TextField ID="txt2" runat="server" Width="100" Note="Note2">
                                            </ext:TextField>
                                        </Items>
                                    </ext:CompositeField>
                                    <ext:CompositeField ID="MultiField2" runat="server" FieldLabel="Another Multi">
                                        <Items>
                                            <ext:TextField ID="txtMulti1" runat="server">
                                            </ext:TextField>
                                            <ext:TextField ID="txtMulti2" runat="server">
                                            </ext:TextField>
                                        </Items>
                                    </ext:CompositeField>
    
                                    <ext:TextField ID="txtAddress" runat="server" FieldLabel="Address" Width="300">
    
                                    </ext:TextField>
                                    
                                    <ext:TextField ID="txtZipCode" runat="server" FieldLabel="Zip Code">
                                    </ext:TextField>
                                    <ext:CompositeField ID="MultiField3" runat="server" FieldLabel="Phone">
                                        <Items>
                                            <ext:TextField ID="txtPhoneNum" runat="server" Note="Home" MaskRe="/[0-9]/">
                                            </ext:TextField>
                                            <ext:TextField ID="txtMobileNum" runat="server" Note="Mobile" MaskRe="/[0-9]/">
                                            </ext:TextField>
                                        </Items>
                                    </ext:CompositeField>
                                </Items>
                            </ext:FormPanel>
                        </North>
                        <Center>
                            <ext:Panel ID="Panel7" runat="server" Title="" Border="false" BodyStyle="padding-top:5px;"
                                Layout="Fit">
                                <Items>
                                    <ext:Panel ID="Panel1" runat="server" Title="">
                                        <Items>
                                        </Items>
                                    </ext:Panel>
                                </Items>
                            </ext:Panel>
                        </Center>
                    </ext:BorderLayout>
                </Items>
            </ext:Viewport>
        
    
        </form>
    </body>
    </html>
  2. #2

    RE: CompositeField Note problem

    Hi,

    I cannot reproduce the issue. Try to update from SVN and retest
  3. #3

    RE: CompositeField Note problem

    Hi,

    I don't have SVN access and actually don't know how to access SVN :(


    Thanks,

Similar Threads

  1. [CLOSED] Problem with CompositeField in TabPanel
    By Moltas in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Mar 03, 2011, 2:26 PM
  2. [FIXED] CompositeField problem
    By caha76 in forum Bugs
    Replies: 2
    Last Post: Dec 02, 2010, 2:35 AM
  3. Replies: 3
    Last Post: Jul 08, 2010, 8:48 PM
  4. [CLOSED] CompositeField and Note
    By bethc in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: May 27, 2010, 12:41 PM
  5. Replies: 3
    Last Post: Jul 14, 2009, 7:02 AM

Posting Permissions