[CLOSED] [1.1] FileUploadField Note

  1. #1

    [CLOSED] [1.1] FileUploadField Note

    Hello,

    If you use a NoteAlign="Down" with a FileUploadFiled in a FormPanel you will notice the note renders behind the control.

    Cheers,
    Timothy
    Last edited by Daniil; Sep 14, 2011 at 7:10 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Thanks for the report.

    For now I can suggest the following FileUploadField's .CtCls as a fix.

    Example

    <%@ Page Language="C#" %>
    
    <%@ 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>Ext.Net Example</title>
    
        <style type="text/css">
            .my-note .x-field-note {
                margin-top: 22px;
            }
            
            .my-note .x-form-file-wrap {
                padding-bottom: 18px;
            }
        </style>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:FormPanel runat="server" Width="300" Height="100">
                <Items>
                    <ext:FileUploadField 
                        runat="server" 
                        Note="Note" 
                        NoteAlign="Down" 
                        CtCls="my-note" />
                    <ext:TextField 
                        runat="server" 
                        Note="Note" 
                        NoteAlign="Down" />
                </Items>
            </ext:FormPanel>
        </form>
    </body>
    </html>
  3. #3

Similar Threads

  1. [CLOSED] Note Right Align
    By speedstepmem2 in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: May 22, 2013, 1:59 PM
  2. [CLOSED] Note is always encoded
    By r_honey in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 23, 2011, 8:53 PM
  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

Tags for this Thread

Posting Permissions