[CLOSED] Tooltip width issue

  1. #1

    [CLOSED] Tooltip width issue

    I have tooltips associated with image buttons as below

    <li>
         <ext:ImageButton runat="server" ID="btnExpExcel" SkinID="tbarExportExcel">
         </ext:ImageButton>
     </li>
    
     ToolTip tipExcel = new ToolTip();
     tipExcel.Html = CacheMessage.GetMessage("HI-008");
     btnExpExcel.ToolTips.Add(tipExcel);
    This works properly in all browsers but in ie 9 the text is wrapped check the attached image. Kindly help me out to solve this.
    I dont want my tooltip to be wrapped.
    Attached Thumbnails Click image for larger version. 

Name:	sample.jpg 
Views:	88 
Size:	30.2 KB 
ID:	3152  
    Last edited by Daniil; Sep 14, 2011 at 7:17 PM. Reason: [CLOSED]
  2. #2
    Please provide test sample
    Also you can try to replace all space by none breakable spaces
    tipExcel.Html = CacheMessage.GetMessage("HI-008").Replace(" ", "&nbsp;");

Similar Threads

  1. [CLOSED] Tooltip align Issue
    By rnachman in forum 1.x Legacy Premium Help
    Replies: 7
    Last Post: Dec 22, 2011, 5:14 PM
  2. Overcoming ExtJs Tooltip's max width of 500
    By anup in forum Examples and Extras
    Replies: 4
    Last Post: Oct 01, 2011, 7:23 PM
  3. [CLOSED] Linkbutton - Tooltip issue
    By JonG in forum 1.x Legacy Premium Help
    Replies: 2
    Last Post: Jan 11, 2011, 7:35 AM
  4. [CLOSED] [1.0] Not able to set Tooltip height and width
    By betamax in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Oct 20, 2010, 4:26 PM
  5. how set tooltip Width
    By maxdiable in forum 1.x Help
    Replies: 0
    Last Post: Jan 15, 2010, 7:17 AM

Posting Permissions