ext:qtip not working for Column renderer

  1. #1

    ext:qtip not working for Column renderer

    Hi,
    In Ext.net version 2.0, I do not see an tooltip anymore when using ext:qtip in the Renderer function.
    Is there an other way to display a tooltip on the rendered icon?
    Thanks!
    Sander

     var iconRender = function(id, column, row) {
                return '<img ext:qtip="tooltip info..." src="/images/someicon.png" />';
            }
    
    ...
    
    <ext:Column runat="server" ID="shopIcons" Text="" Width="50" Align="Center" Fixed="true"
                                    MenuDisabled="true" Resizable="false">
                                    <Renderer Fn="iconRender" />
                                </ext:Column>
  2. #2
    You need to usen data- prefix
    To register a quick tip in markup, you simply add one or more of the valid QuickTip attributes prefixed with the data- namespace.


    // Add a quick tip to an HTML button
    <input type="button" value="OK" data-qtitle="OK Button" data-qwidth="100" data-qtip="This is a quick tip from markup!"></input>
    See http://docs.sencha.com/ext-js/4-1/#!...uickTipManager
  3. #3
    Problem solved, thanks!

Similar Threads

  1. Grid Column Renderer
    By karthik.arian03 in forum 1.x Help
    Replies: 8
    Last Post: Feb 11, 2011, 6:34 AM
  2. [CLOSED] Renderer on a TemplateColumn: not working
    By capecod in forum 1.x Legacy Premium Help
    Replies: 5
    Last Post: Dec 11, 2010, 12:34 AM
  3. [CLOSED] [1.0] - TreeNode - QTip DismissDelay Not Working
    By drkoh in forum 1.x Legacy Premium Help
    Replies: 4
    Last Post: Nov 24, 2010, 4:06 PM
  4. Checkbox Column with Renderer
    By Tbaseflug in forum 1.x Help
    Replies: 5
    Last Post: Jan 13, 2009, 3:05 PM
  5. GridPanel column renderer and AjaxMethods
    By echo in forum 1.x Help
    Replies: 1
    Last Post: Dec 23, 2008, 12:15 PM

Tags for this Thread

Posting Permissions