[CLOSED] radio label tooltip

  1. #1

    [CLOSED] radio label tooltip

    is it possible to show tooltip only when user hover on the boxlabel text in radio ?
    Last edited by Daniil; Jan 06, 2012 at 8:34 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Yes, you just need to set up a respective Target.

    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>
    </head>
    <body>
        <form runat="server">
            <ext:ResourceManager runat="server" />
            <ext:Radio 
                ID="Radio1" 
                runat="server" 
                BoxLabel="BoxLabel" />
            <ext:ToolTip
                runat="server" 
                Target="Radio1.labelEl"
                Html="Hello!"  />
        </form>
    </body>
    </html>
  3. #3
    thanks Daniil

Similar Threads

  1. [CLOSED] Ext.Net.Radio ToolTip
    By rnfigueira in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Mar 16, 2012, 2:22 PM
  2. Change Radio button label color
    By Elie.fakhry in forum 1.x Help
    Replies: 5
    Last Post: Sep 23, 2010, 10:54 PM
  3. mouse over tooltip on radio button boxLabel
    By tjoklee in forum 1.x Help
    Replies: 0
    Last Post: Sep 21, 2010, 6:19 AM
  4. Retrieve checked radio from Radio Group
    By ttharaka2002 in forum 1.x Help
    Replies: 0
    Last Post: Mar 25, 2010, 2:15 AM
  5. [CLOSED] Dynamic Creation of Radio Buttons within Radio Group
    By Steve in forum 1.x Legacy Premium Help
    Replies: 6
    Last Post: Mar 04, 2009, 1:13 PM

Posting Permissions