[CLOSED] How to add a complex tooltip to ext:LinkButton

  1. #1

    [CLOSED] How to add a complex tooltip to ext:LinkButton

    How can I add this tooltip to an ext:LinkButton? Right now, it just renders the asp:BulletedList in the page (not hidden).

                                                        <ext:ToolTip ID="TheToolTip" runat="server" Anchor="left">
                                                            <Content>
                                                                <asp:BulletedList ID="TheList" runat="server" DataTextField="SomeField" />
                                                            </Content>
                                                        </ext:ToolTip>
    Last edited by geoffrey.mcgill; Sep 14, 2010 at 5:38 PM. Reason: [CLOSED]
  2. #2
    Hi Jeremy,

    I tried the following full sample and it appears to work correctly.

    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:LinkButton runat="server" Text="Submit">
                <ToolTips>
                    <ext:ToolTip runat="server" Anchor="left">
                        <Content>
                            <asp:Label runat="server" Text="Testing..." />
                        </Content>
                    </ext:ToolTip>
                </ToolTips>
            </ext:LinkButton>
        </form>
    </body>
    </html>
    Geoffrey McGill
    Founder
  3. #3
    ah, maybe there was a change committed today that might have affected this functionality.

    Please SVN update.
    Geoffrey McGill
    Founder
  4. #4
    That works. Thanks.
  5. #5
    This is no longer working for me.

    I have an asp bulleted list inside a tooltip, and whenever I databind the bulleted list during a directevent, it does not update. I tried calling updatecontent on the tooltip, but this only errored.
  6. #6
    Quote Originally Posted by jmcantrell View Post
    This is no longer working for me.

    I have an asp bulleted list inside a tooltip, and whenever I databind the bulleted list during a directevent, it does not update. I tried calling updatecontent on the tooltip, but this only errored.
    Currently I don't think this will work (obvious). We will log as a defect.

    Does calling .Render() on the Tooltip work? or on the parent Component (LinkButton?).
    Geoffrey McGill
    Founder
  7. #7
    Actually, it would be better to create this report as a new forum post. This appears to be a different issue than the original. Cross link between two threads if you feel they are related.
    Geoffrey McGill
    Founder
  8. #8
    Thread has continued at the following location, see

    http://forums.ext.net/showthread.php...-I-create-this
    Geoffrey McGill
    Founder

Similar Threads

  1. [CLOSED] LoginView with LinkButton
    By SouthDeveloper in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Jul 04, 2012, 11:16 AM
  2. [CLOSED] LinkButton.Disabled = True
    By deejayns in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jun 30, 2011, 1:55 PM
  3. [CLOSED] underline LinkButton
    By majunior in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Mar 03, 2011, 12:46 PM
  4. LinkButton Style
    By HzA in forum 1.x Help
    Replies: 0
    Last Post: Feb 08, 2011, 9:53 AM
  5. [CLOSED] Linkbutton - Tooltip issue
    By JonG in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 11, 2011, 7:35 AM

Posting Permissions