[CLOSED] Field Validation Messages not showing when inside Composite Field

  1. #1

    [CLOSED] Field Validation Messages not showing when inside Composite Field

    Hi,

    When I have a TextField inside a CompositeField, the validation message does not show when you mouse over the TextField.

    Example:

    <!DOCTYPE html>
    <html>
    <head runat="server">
        <title></title>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
    
            <ext:Viewport runat="server" Layout="FitLayout">
                <Items>
                    <ext:FormPanel ID="FormPanelMain" runat="server" Frame="true">
                        <Items>
                            <ext:CompositeField runat="server">
                                <Items>
                                    <ext:TextField runat="server" AllowBlank="false" />
                                </Items>
                            </ext:CompositeField>
                        </Items>
                    </ext:FormPanel>
                </Items>
            </ext:Viewport>
        </form>
    </body>
    </html>
    Steps to reproduce:

    1. Load page
    2. Click in field
    3. Click outside of field (field turns red)
    4. Mouse over field

    You will notice that the error message is not displayed. If you add the TextField directly into the FormPanel.Items, this issue does not occur - it displays the error message correctly.

    Many Thanks
    Last edited by Daniil; Aug 19, 2011 at 2:08 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Please set up CombineErrors="false" for the CompositeField.
  3. #3
    Thanks, this has solved my issue.

Similar Threads

  1. RTL for Composite Field
    By ahmadezzeir in forum 1.x Help
    Replies: 3
    Last Post: May 17, 2012, 8:25 PM
  2. Replies: 1
    Last Post: Oct 07, 2011, 8:34 AM
  3. Replies: 2
    Last Post: Sep 22, 2011, 11:46 AM
  4. Composite field with UserControl
    By Paul D in forum 1.x Help
    Replies: 4
    Last Post: Dec 19, 2010, 7:02 PM
  5. [CLOSED] FieldLabel for Items inside Composite Field
    By amitpareek in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: May 07, 2010, 7:46 AM

Posting Permissions