[CLOSED] Combox items - Tooltip

  1. #1

    [CLOSED] Combox items - Tooltip

    Any idea how can I add tooltip to individual items in combox?

    Thanks in Advance!
    Last edited by Daniil; Dec 02, 2010 at 7:47 AM. Reason: [CLOSED]
  2. #2
    Hi,

    Please look at the example.

    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:ComboBox ID="ComboBox1" runat="server" LazyInit="false">
            <Items>
                <ext:ListItem Text="Item 1" Value="1" />
                <ext:ListItem Text="Item 2" Value="2" />
            </Items>
        </ext:ComboBox>
        <ext:ToolTip 
                runat="server" 
                Target="={#{ComboBox1}.list}"
                Delegate=".x-combo-list-item"
                TrackMouse="true">
                <Listeners>
                    <Show Handler="this.body.update(this.triggerElement.outerText);" />
                </Listeners>
            </ext:ToolTip>
        </form>
    </body>
    </html>
    See also
    http://forums.ext.net/showthread.php...it-Version-0.8
  3. #3
    Also, if you need a simple tooltip, you could use a custom Template with ext:qtip attributes.

Similar Threads

  1. Replies: 0
    Last Post: Feb 23, 2012, 12:42 PM
  2. [CLOSED] combox in gridfilters
    By Vasudhaika in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: Nov 27, 2010, 12:34 PM
  3. [CLOSED] Need help with combox -
    By JD in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Aug 26, 2009, 3:31 PM
  4. [CLOSED] combox value not set
    By Satyanarayana murthy in forum 1.x Legacy Premium Help
    Replies: 1
    Last Post: May 21, 2009, 12:29 PM
  5. combox
    By sunmooncm in forum 1.x Help
    Replies: 0
    Last Post: Apr 14, 2009, 2:36 PM

Tags for this Thread

Posting Permissions