[CLOSED] How to show a label in front of a button?

  1. #1

    [CLOSED] How to show a label in front of a button?




    I have the following code to show the menu with ImageButtons and a text for the option name which a label.

    Currently the label appear at the bottom of each button.

    Could you tell me please if is it posible to show the text in from of the button instead of the bottom?


    <ext:ImageButton ID="ImageButtonMenusOffice" runat="server"
    
    
    ImageUrl="~/App_Themes/ChampWeb/Images/btnMenusOffice.png">
    
    
    </ext:ImageButton><br />
    
    
    <ext:Label ID="MenusOffice" runat="server" Text="Dr. Office"/><br /><br />
  2. #2

    RE: [CLOSED] How to show a label in front of a button?

    Hi,

    The information is not enought. It is required to see full code. But try to swith positions (first label then image)
  3. #3

    RE: [CLOSED] How to show a label in front of a button?

    What I meant it is that I want the label text to appear at the front of the image.

    If I swith positions (first label then image) then text will appear above of the image.

  4. #4

    RE: [CLOSED] How to show a label in front of a button?

    Hi,

    Please note that label will overlay image button amd some part of the button's area will be inaccessible for clicking

    You need to set own required offset (top and left) for the label
    
                <ext:ImageButton ID="ImageButtonMenusOffice" runat="server" ImageUrl="8-1.gif">
                </ext:ImageButton>
    
                <ext:Label ID="MenusOffice" runat="server" Text="Dr. Office" StyleSpec="position:relative; display:block; top:-30px; left: 10px;">
                    <Listeners>
                        
                    </Listeners>
                </ext:Label>

Similar Threads

  1. Replies: 1
    Last Post: May 21, 2012, 3:47 PM
  2. How to show dollars format on label
    By Mr.Techno in forum 1.x Help
    Replies: 5
    Last Post: Nov 28, 2011, 8:56 AM
  3. I can't show label with textfield
    By LLdeOJ in forum 1.x Help
    Replies: 1
    Last Post: Nov 24, 2010, 10:57 AM
  4. Show value in label on row selection
    By RS in forum 1.x Help
    Replies: 6
    Last Post: Jan 22, 2009, 7:04 AM
  5. NumberField is front of a CalendarExtender
    By Moreno in forum 1.x Help
    Replies: 5
    Last Post: Dec 02, 2008, 7:34 PM

Posting Permissions