Dynamic ToolTips for DropDownByIndex

Hi experts,
how can I show different tooltips for every entry in a dropdown list when I go over with my mouse?
e.g.
Entries in drop down list:       ToolTip:
entry 1                                    ToolTip 1
entry 2                                    ToolTip 2
entry 3                                    ToolTip 3
Thanks in advance

Hi
>If the ToolTip is not too long maybe you can add the text into the Text property of the DropDownByIndex. I would do something like:
>Entry 1 (ToolTip 1)
>Entry 2 (ToolTip 2)
+1
If DropDown operates with 'key/display text' pairs. It seems the display texts in your DD is rather technical so you thought of the tooltips. Try to make the texts more user friendly and you will not need the tooltips at all.
If you still wants to show the technical keys, I'd also suggest to use InputField with EVS. It behaves like DD, but shows technical key in a field and shows key/text pairs in a popup.
BR, Siarhei

Similar Messages

  • Dynamic tooltip for a link

    Hi,
    I have a requirement to display a dynamic tooltip when the cursor is placed on a cell of a table. The cell contains a link.
    Is it possible in OA framework?
    How can we achieve this?
    Divya.

    Divya,
    This error is coming because you must be using classic table.So, you ar typecasting Column bean with the item of your classic table which is wrong. The code i have given you was in refrence to advanced table.
    Anyways, confirm these three things:
    1)Self Service Accessibility Features profile value is set to "Standard Accessibility"
    2)Code in process request:
    OATableBean tableBean =
    (OATableBean)webBean.findChildRecursive("ResourceTB");
    /*Here instead of OAColumnBean use the type of bean your item is , eg if item is messagetextinput use :
    OAMessageTextInputBean c1 = (OAMessageTextInputBean)tableBean.findChildRecursive("Monday1");*/
    OAColumnBean c1 = (OAColumnBean)tableBean.findChildRecursive("Monday1");
    /*In second attribute you only have to mention vo attr name and not the vo name also.So the next line should be OADataBoundValueViewObject tip = new OADataBoundValueViewObject(c1, "Monday1Task");
    OADataBoundValueViewObject tip = new OADataBoundValueViewObject(c1, "ResourceMainVO1.Monday1Task");
    c1.setAttributeValue(oracle.cabo.ui.UIConstants.SHORT_DESC_ATTR, tip);
    3)This is known bug in OAF that tooltip text does not appear in some components,eg OAMessageChoice is one such component.So u need to test.It was fine in messagetextinput for me.
    I hope i am clear.
    --Mukul                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • Dynamic tooltips for charts (BusinessGraphics) with simple series

    Hello,
    I was wondering wheter the tooltip for charts with simple series can set dynamically. I cannot bind it to the context within the properties of the BusinessGraphics control but maybe it can be set in the code?
    This way I want to show the value of the column for instance as tooltip in a chart, or is there a better solution?
    thx,
    jeroen

    I got it!
    This thread helped me.
    [http://forums.sdn.sap.com/thread.jspa?threadID=1343796|http://forums.sdn.sap.com/thread.jspa?threadID=1343796]

  • Jquery tooltip for sharepoint 2013 list (newform.aspx)

    I am looking for a simple solution/jquery tooltip for SharePoint list form fields.
    Something like below , but this one displays static text for each column and want tooltip text for each of my list column
    <script type="text/javascript" language="javascript" src="/wz_tooltip.js"></script><o:p></o:p>
    <a href="#" onmouseover="Tip('(This is test tooltip )');" onmouseout="UnTip();">
    Thanks in advance!
    <o:p></o:p>
    Amrita Talreja

    When you assign "Description" for every field in sharepoint list.SharePoint by default show this desc in a span just below the field control , like this.
    <span class="ms-metadata">This is simple desc</span>
    What you can try in jquery/javascript is to -
    - Search for this span [class="ms-metadata"] in your form table (table[class="ms-formtable"])
    - save its text() in a variable - var txtDesc = $("span selector").text();
    - Hide this span -$("span selector").hide()
    - Now you have dynamic desc message , you can add this as an "Title" attribute to your field control (textbox and other control)
    - $("your field control selector").attr("Title", txtDesc );
    Or can add a hyperlink for this -
    <a href="#" onmouseover="Tip('"+ txtDesc +"');" onmouseout="UnTip();">
    Thanks
    Ganesh Jat [My Blog |
    LinkedIn | Twitter ]
    Please click 'Mark As Answer' if a post solves your problem or 'Vote As Helpful' if it was useful.

  • Tooltip for IR report(Apex 3.2)header column

    Hello Everyone,
    I need help in setting up a tooltip for report hearder in interactive reports. I tried the following methods:
    1) By assigning a div title for column Deptno(This code is taken from the html source of IR report column):
    <th id="DEPTNO" >
    <div id="apexir_DEPTNO" onclick="gReport.controls.widget(this.id)" style="">
    Deptno
    <div title="Tooltip text for first div">&lt/div>
    </div>&lt/th>
    2) With javascript & css : I put the following line on report header edit section:
    < a class="tooltip" href="#">Tooltip<span>This is the crazy little Easy Tooltip Text.</span></a>
    Nothing really solved my problem. Is there any easy way of resolving the above issue?
    Thanks in advance for your help.
    - Parveen
    Edited by: Parveen Sehrawat on Mar 14, 2012 2:58 PM

    Hi,
    Blog post example do not work with APEX 3.2
    By default on APEX 3.2 you do not have jQuery and dynamic actions.
    You can do same with APEX 3.2 if you use htmldbQuery plugin
    http://sourceforge.net/projects/htmldbquery/
    Integrate plugin and jQuery to APEX
    Then create page process before regions
    DECLARE
      l_sql VARCHAR2(32700);
    BEGIN
      l_sql := '
      SELECT COLUMN_ALIAS,
        HELP_TEXT
       FROM APEX_APPLICATION_PAGE_IR_COL
      WHERE APPLICATION_ID = :APP_ID
        AND PAGE_ID = :APP_PAGE_ID
        AND HELP_TEXT IS NOT NULL
      HTP.p ('<script type="text/javascript">');
      -- Create JSON object.
      HTP.prn ('var gIrColHelp = $u_eval(''(');
      APEX_UTIL.JSON_FROM_SQL(l_sql);
      HTP.prn (')'');');
      HTP.p ('</script>');
    END;Add to page HTML header
    <script type="text/javascript">
    $.htmldbIrReady(function(){
    $.each(gIrColHelp.row,function(i,jd){
      $($x("apexir_"+jd.COLUMN_ALIAS)).parent("th").attr({"title":jd.HELP_TEXT});
    </script>See working example
    http://actionet.homelinux.net/htmldb/lspdemo?p=220
    Regards,
    Jari
    http://dbswh.webhop.net/dbswh/f?p=BLOG:HOME:0
    Edited by: jarola on Mar 15, 2012 4:53 PM

  • Validation for DropdownbyIndex

    Hi All,
    In my view I have some InputFields and DropdownbyIndex UI elements.
    I binded Value Atrributes for InputFields and Value Node for DropdownbyIndex.
    While doing validation for these elements :
    For <b>InputFields(Value Atrributes):</b>
    IWDAttributeInfo attributeInfo=this.wdContext.getNodeInfo().getAttribute("name");
    messageManager.reportContextAttributeMessage(this.wdContext.currentContextElement(),attributeInfo,IMessageSomeComp.MISSING_NAME,
    new Object[] { "Name" }, false);
    For <b>DropdownByIndex(Value Node):</b>
    IWDAttributeInfo attributeInfo1=this.wdContext.nodeSample().getNodeInfo().getAttribute("value");
    messageManager.reportContextAttributeMessage(this.wdContext.currentSampleElement()attributeInfo1,IMessageSomeComp.MISSING_NAME,
    new Object[] { "Name" }, false);
    If I execute this both are working fine and I am getting  a Red Box around inputfield(Name). But for DropdownbyIndex it is not like that. There is no Red Box.
    why it is like this and how can I solve this. Please give me some good solution.
    Thanks a lot in advance.
    Joe

    Hi Luicano,
    Can you help me on how to bind context attribute dynamically to DropDownByIndex.
    do i need to create context attribute at run time too, If yes, how can i do this.
    i have created the same with DropdownByKey as mentioned below.
    IWDDropDownByKey nameDrop = (IWDDropDownByKey) view.createElement(IWDDropDownByKey.class,"txt"+id);
    String dropdownValue = aaa,bbb,ccc,ddd;
    IWDNodeInfo ddlNode= wdContext.getNodeInfo().addChild("DynamicDDLNode"+id,null,true,true,true,false,false,true,null,null,null);
    IWDAttributeInfo info = ddlNode.addAttribute("ddlKey" , "ddic:com.sap.dictionary.string");
    ISimpleTypeModifiable myType= info.getModifiableSimpleType();
    IModifiableSimpleValueSet values=myType.getSVServices().getModifiableSimpleValueSet();
    String[] temp = dropdownValue.split(",");
    for(int i=0; i<temp.length;i++){
              values.put(new String(temp[i]),temp[i]);
    nameDrop.bindSelectedKey("DynamicDDLNode"+id+".ddlKey");
    Please help as this is really urgent for me to resolve the issue.
    Thanks,
    Abhishek

  • Tooltip for bussiness graphics ui element

    hi Experts,
    I am using Bussiness Graphics UI Element in Webdyn Pro
    chart type is Lines
    i want to display tool tip value wehenever i place mouse over point in graph
    my conext structure is
    --series
    points
    ---valuex
    ---value y
    i am getting ploted line graph
    if i set tooltip for point as---series.point.x
    its not displaying the tool tip
    r there any coding we need to do
    pls can anybody clear my doubt
    r there any setting we need to make in chart designer
    or any event for mouse over
    thanks

    hi,
    In that case, create an extra context attribute in that node, and dynamically assign values(text that you wanted to display as tooltip) to it.
    Then, map that context with the series element.
    Enable the "label" of the businessGraphics from the chart designer.
    The result will be that, although u will not get tooltip, but in the labels, you can display what you wanted.
    Regards,
    Hanoz

  • How to make tooltip for DataGridColumn

    Hi, I'm trying to get a tooltip for whenever the user mouses
    over a column header in a DataGrid. I've seen some talk about
    creating my own ItemRenderer to do this but looking at the Flex
    docs, I see that the existing DataGridItemRenderer for a
    DataGridColumn has a tooltip attribute but I have been unsuccessful
    in getting it to work. Should I in fact make my own ItemRenderer or
    is there any way to expose it in the existing DataGridItemRenderer?
    Can anyone advise what the best way to do this is? Thanks!

    We can do like this:
    l_DataGridColumn.headerRenderer=new ClassFactory(YourHeaderItemRenderer);// use custom renderer instead of the default DataGridItemRenderer
    And in you class YourHeaderItemRenderer extends DataGridItemRenderer, you can override some method:
    override public function set toolTip(value:String):void {
         //set toolTip value here:    
         toolTip= "column description";
    this one is not dynamic, so if we want to,  we can extend the DataGridColumn to add the toolTip field, and use it:
    l_DataGridColumn.headerRenderer=new ClassFactory(YourHeaderItemRenderer);// use custom renderer instead of the default DataGridItemRenderer
    l_DataGridColumn.toolTip="compute it here";
    override public function set toolTip(value:String):void {
         //set toolTip value here:    
         toolTip= (data as YourDataGridColumn).toolTip;
    Of course in this case, the dataGrid columns must use the YourDataGridColumn instead of DataGridColumn.
    All that to have a toolTip for the column, it's sad :-)

  • TOOLTIP FOR BUSSINESS GRAPHICS

    hi Experts,
    I am using Bussiness Graphics UI Element in Webdyn Pro
    chart type is Lines
    i want to display tool tip value wehenever i place mouse over point in graph
    my conext structure is
    --series
    points
    ---valuex
    ---value y
    i am getting ploted line graph
    if i set tooltip for point as---series.point.x
    its not displaying the tool tip
    r there any coding we need to do
    pls can anybody clear my doubt
    r there any setting we need to make in chart designer
    or any event for mouse over
    thanks

    hi,
    In that case, create an extra context attribute in that node, and dynamically assign values(text that you wanted to display as tooltip) to it.
    Then, map that context with the series element.
    Enable the "label" of the businessGraphics from the chart designer.
    The result will be that, although u will not get tooltip, but in the labels, you can display what you wanted.
    Regards,
    Hanoz

  • How to set up Dynamic Variants for job which is based on Pay Period

    Hi,
    We need to set up dynamic variant for payroll interface.  This interface is based on Pay periods and that is why we need to use different variant for each month.  Letus know how to set up dynamic variant which will take care of Pay Periods

    Hi,  Thnx for reply.
    We are not changing the control records, current period will be some old period in system. 
    payroll is not processed in SAP,

  • How to know the dynamic values for this :AND category_id_query IN (1, :3, )

    Hi Team,
    R12 Instance :
    Oracle Installed Base Agent User Responsibility --> Item Instances -->
    Item Instance: Item Instances > View : Item Instance : xxxxx> Contracts : Item Instance : xxxxx> Service Contract: xxxxx>
    In the above page there are two table regions.
    Notes.
    -------------------------------------Table Region---------------------------
    Attachments
    -------------------------------------Table Region---------------------------
    --the attachments are shown using the query from the fnd_lobs and fnd_docs etc...
    I want to know what are the document types are displayed in this page ?
    --We developed a custom program to attach the attachments to the  services contracts and the above seeded OAF page displays those ..as needed.
    But after recent changes..the Attachments--> table region is not showing the attachments.
    I have verified the query..and could not find any clue in that..
    but i need some help if you guys can provide..
    SELECT *
    FROM
    *(SELECT d.DOCUMENT_ID,*
    d.DATATYPE_ID,
    d.DATATYPE_NAME,
    d.DESCRIPTION,
    DECODE(d.FILE_NAME, NULL,
    *(SELECT message_text*
    FROM fnd_new_messages
    WHERE message_name = 'FND_UNDEFINED'
    AND application_id = 0
    AND language_code  = userenv('LANG')
    *), d.FILE_NAME)FileName,*
    d.MEDIA_ID,
    d.CATEGORY_ID,
    d.DM_NODE,
    d.DM_FOLDER_PATH,
    d.DM_TYPE,
    d.DM_DOCUMENT_ID,
    d.DM_VERSION_NUMBER,
    ad.ATTACHED_DOCUMENT_ID,
    ad.ENTITY_NAME,
    ad.PK1_VALUE,
    ad.PK2_VALUE,
    ad.PK3_VALUE,
    ad.PK4_VALUE,
    ad.PK5_VALUE,
    d.usage_type,
    d.security_type,
    d.security_id,
    ad.category_id attachment_catgeory_id,
    ad.status,
    d.storage_type,
    d.image_type,
    d.START_DATE_ACTIVE,
    d.END_DATE_ACTIVE,
    d.REQUEST_ID,
    d.PROGRAM_APPLICATION_ID,
    d.PROGRAM_ID,
    d.category_description,
    d.publish_flag,
    DECODE(ad.category_id, NULL, d.category_id, ad.category_id) category_id_query,
    d.URL,
    d.TITLE
    FROM FND_DOCUMENTS_VL d,
    FND_ATTACHED_DOCUMENTS ad
    WHERE d.DOCUMENT_ID = ad.DOCUMENT_ID
    *) QRSLT*
    WHERE ((entity_name    ='OKC_K_HEADERS_V'-- :1
    AND pk1_value          IN ( 600144,599046) --:2
    AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    AND datatype_id       IN (6,2,1,5)
    AND (SECURITY_TYPE     =4
    OR PUBLISH_FLAG        ='Y')))
    --='000180931' -- 'ADP118'
    The above seeded query is the one which is used for table region to retrieve the data..
    how to know the dynamic values for this : AND category_id_query IN (1, :3, :4, :5, :6, :7) )
    --Sridhar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    Hi Patricia,
    is it working for restricted key figure and calculated key figure ??
    Note Number Fisc Period Opening Days
    1 1 2
    2 1 3
    3 1 0
    because I have other restriction, so I create two restricted key figure..
    RK1  with restriction :  Total Number of Note,
    RK2  with restriction :  Total Opening Days ,
    then I Created a calculated key figure, average opening days in a period
    CK1 = RK2 / RK1..
    in this case, I am not sure if it will work or not..
    for example, during RK2 calclation, it might be this   2+3 = 5, the line with 0 will be ignored..
    during RK1 calcualtion, it might be 1 + 1 + 1 = 3. ---> Not sure in this case, the line with opening days 0 will be calculated or not..
    could you please confirm..

  • ASA 5505 -Can I use outside dynamic IP for webserver DMZ?

    SETUP
    ASA 5505
    ASA Version 9.1(2)
    ASDM Version 7.1(3)
    I have basic license, using only three vlans (outside, inside, DMZ).
    QUESTION:
    I want to find a way (if possible) to use the single DYNAMIC IP (dhcp'd from ISP) on the "outside" interface, as a means to setup a web-server on the DMZ? I just want to allow my WHS-2011 (server) to talk to microsoft's free DDNS service where my domain name is hosted (ports 80,443,4125).
    So far, every setup option I have tried does not make it past the implicit deny acl's (on the outside interface) to the web-server (DMZ).
    I understand that the VLAN1 (inside) had to be disabled. I understand that objects now replace some of the older NAT'd components.
    CONFIG:
    object network webserver-external-ip
    host <X.X.X.X>
    ! I had set this to match my ISP DHCP address
    object network webserver
    host 172.16.0.2
    nat (DMZ,outside) static webserver-external-ip service tcp www www
    nat (DMZ,outside) static webserver-external-ip service tcp 443 443
    nat (DMZ,outside) static webserver-external-ip service tcp 4125 4125
    access-list outside_acl extended permit tcp any object webserver eq www
    access-list outside_acl_https extended permit tcp any object webserver eq 443
    access-list outside_acl_rww extended permit tcp any object webserver eq 4125
    access-group outside_acl in interface outside
    access-group outside_acl_https in interface outside
    access-group outside_acl_rww in interface outside
    ! added the dns statements below because the cisco doc (below) says it's required or dmz traffic can't get out despite default rule allowing it to do so.
    ! (ctrl-F) ... "all traffic would be blocked from the dmz to hosts on the internet"
    ! http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a0080bf150c.shtml
    object network dns-server
    host 8.8.8.8
    exit
    access-list dmz_acl extended permit udp any object dns-server eq domain
    access-list dmz_acl extended permit ip any any
    access-group dmz_acl in interface DMZ
    SUMMARY:
    I just want to allow my WHS-2011 (server) to talk to microsoft's free DDNS service where my domain name is hosted (ports 80,443,4125).
    I want to find a way (if possible) to use the single DYNAMIC IP (dhcp'd from ISP) on the "outside" interface, as a means to setup a web-server on the DMZ?
    Other:
    As an interim alternative, I have been able to setup & connect to the ASA using clientless vpn (web-ssl), and from there getting over to my WHS2011 server...-but the problem is, I have no way of knowing, or updating my DDNS once that IP changes since the ASA keeps blocking the return traffic to theh outside interface. My only assumption is that becasue I am using a single dynamic IP (outside interface) that it has nothing to re-direct the traffic to....???
    Thank You for any help you can provide!!
    k/r

    Hi,
    I cant really help with the DDNS portion but I would imagine you already have that sorted out.
    The ASA configurations however seem a bit off to me.
    Here is what you should configure
    STATIC PAT TO HOST SERVICES
    There are some changes that need to be done to both ACL and NAT configurations. First of the NAT configurations for each port require their own "object network" to be configured.
    Also since you are using a DHCP address from the ISP to act as the NAT address then you can use the keyword/parameter "interface" in the actual "nat" command. This basically tells the ASA that it should use whatever IP address is currently on the "outside" interface of the ASA. So you wont have to configure any separate "object network" for the public IP address every time it changes.
    Also, with regards to the ACL configurations. You should only configure one ACL per interface in the "in" direction. So all the rules you need to configure for traffic inbound from the Internet need to be in the same ACL that you then attach to the "outside" interface with the command "access-group"
    object network WEBSERVER-TCP80
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp www www
    object network WEBSERVER-TCP443
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp 443 443
    object network WEBSERVER-TCP4125
    host 172.16.0.2
    nat (DMZ,outside) static interface service tcp 4125 4125
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP80 eq www
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP443 eq https
    access-list outside_acl extended permit tcp any object WEBSERVER-TCP4125 eq 4125
    access-group outside_acl in interface outside
    DYNAMIC PAT FOR LANs and DMZs
    The above NAT configurations only handles the NAT for situations where the remote hosts on the Internet contact your DMZ server.
    If you want to configure Dynamic PAT for all your LAN and DMZ users which basically enable them to use the "outside" interface public IP address for Internet traffic, then you could configure this single "nat" configuration
    nat (any,outside) after-auto source dynamic any interface
    This would enable Dynamic PAT for all users behind the ASA
    I am not sure if you will run into problems since you are using a single public IP address and trying to forward TCP/443. This port is both used for SSL VPN and ASDM management of the ASA.
    If you want to change the default port of the ASDM management you can use this command
    http server enable
    If you want to change the default port of SSL VPN you can use these commands
    webvpn
    port
    Naturally before doing either of the above changes, make sure that you are not relying to them for management purposes if something was to go wrong. If you have SSH management access to the ASA then it should naturally be ok.
    I am not sure if all of the above are enough to get your setup working but it should be the basics. Naturally if there is still problems after the above suggestions it might be helpfull to see the current ASA configurations. For example NAT might not work if the ordering of NAT rules is wrong even though the actual configurations are otherwise valid.
    Hope this helps
    Please do remember to mark a reply as the correct answer if it answered your question.
    Feel free to ask more if needed
    - Jouni

  • How to assign a tooltip for a field in ALV editable grid?

    I have to display some instructions ( 50 chars long) for an editable field in alv.
    How to do this?
    BCALV_DEMO_TOOLTIP tells about assiging tooltip to an icon or symbol.
    Thanks,
    Ven..

    Neither of these two example programs help much in regards to tooltips against any field of any row. Both of these examples use tooltips for Icons. I have also been looking for a single example of tooltips usage outside of these two programs, and have found nothing in SAP, or on the internet, so far.
    Having said that, I have tried to implement the same method used by the later example, but have not got this to work. What I think we need is an example of this functionality where these Icons are not used!. I believe.
    Gary King

  • Can we create a dynamic action for Training and Event Management???

    Hi All
    i need to configure automatic email generation for an employee when he gets booked for a training program in the training and event management module. can we use a dynamic action for it? and how to configure it?? I also guess that i have to use the Feature MAILS for it. but i am not sure abt it and also not sure how to configure it. I will really appreciate if someone can provide me with a step to step configuration for the same. Its urgently sought.
    Thanks and Regards

    Notifications in T&E are done through Workflow.Dynamic Actions are only for PA Infotypes.
    ~Suresh

  • Is there a way to have tooltips for every column in a TableView?

    Hi there!
    I found in documentation that any node and control can show a tooltip ( http://docs.oracle.com/javafx/2/api/javafx/scene/control/Tooltip.html ) but I can't get tooltips to work for TableColumn (a column from TableView).
    Do you have any idea how could I have tooltips for each column of the table view?

    TableColumn's are neither controls nor nodes, so you can neither set nor install tooltips on them.
    You can use cellfactories to set tooltips on cells generated from the factories.
    You can use css style lookups (node.lookup function) to get access to table nodes (such as the headers) after the tableview has been displayed on a stage and then manipulate the displayed nodes to add tooltips. It's not a great approach, but it is the only approach I know at the moment that would work.

Maybe you are looking for