[CLOSED] Hide field label separator of form panel

  1. #1

    [CLOSED] Hide field label separator of form panel

    Hi,

    Please verify the example link provided below and tell us if there is any way to hide the field separator between the labels & text box in the field set??

    https://examples3.ext.net/#/Form/FormPanel/Basic/

    Also please verify the attachment.
    Attached Thumbnails Click image for larger version. 

Name:	post.jpg 
Views:	11 
Size:	91.6 KB 
ID:	18841  
    Last edited by Daniil; Jan 19, 2015 at 6:04 AM. Reason: [CLOSED]
  2. #2
    Set FieldDefaults' LabelSeparator = " ", as shown below:
    <!DOCTYPE html>
    <html>
    <body>
        <ext:ResourceManager runat="server" Theme="Gray" />
        <ext:FormPanel Title="Form" BodyPadding="5"  runat="server">
            <FieldDefaults LabelSeparator=" " />
            <Items>
                <ext:TextField FieldLabel="Field 1" runat="server" />
            </Items>
        </ext:FormPanel>
    </body>
    </html>
    you can also set Field's LabelSeparator = " "
    <!DOCTYPE html>
    <html>
    <body>
        <ext:ResourceManager runat="server" Theme="Gray" />
        <ext:FormPanel Title="Form" BodyPadding="5"  runat="server">
            <FieldDefaults  />
            <Items>
                <ext:TextField FieldLabel="Field 1" LabelSeparator=" " runat="server" />
            </Items>
        </ext:FormPanel>
    </body>
    </html>
    Last edited by RaphaelSaldanha; Jan 14, 2015 at 11:18 AM.
  3. #3
    You should be able to use an empty string also.
    LabelSeparator=""
  4. #4
    You can use global solution also:
    Ext.form.field.Base.prototype.labelSeparator = "";
  5. #5
    Speedstepmem4, can we mark this thread as closed?
    Last edited by RaphaelSaldanha; Jan 15, 2015 at 11:50 AM.
  6. #6

    HIde field label seperator of form panel

    Hi RaphaelSaldanha,

    Thanks for the reply. It's working fine.
    Please mark this thread as closed.
  7. #7
    Speedstepmem4, you're welcome

Similar Threads

  1. Replies: 2
    Last Post: Jul 02, 2013, 7:01 AM
  2. [CLOSED] Field outside of Form panel is not send to server
    By aisi_it_admin in forum 2.x Legacy Premium Help
    Replies: 10
    Last Post: Aug 22, 2012, 5:27 PM
  3. Replies: 0
    Last Post: Dec 28, 2011, 9:30 AM
  4. Replies: 2
    Last Post: Sep 22, 2011, 11:46 AM
  5. Replies: 1
    Last Post: Feb 03, 2009, 6:44 AM

Posting Permissions