Making Global Activity Heading Bold and Tool Tip over columns in OBPM10GR3

Hi all,
I would like to make my Global Activity Heading in Applications in the workspace BOLD and change the FONT of it.
I also would like to have a Tool Tip explaining what a column in the view means.
How can I do these things in OBPM10GR3?

Thanks for the reply valf - you can see a trial version of the page here http://www.banded.co.uk/festighoul_trial.html
Notice that there is a large empty black div at the top of the pagewhere flash content should be playing... The tool tip trigger is nearer the bottom of the page (a graphic of a '?')
Thanks

Similar Messages

  • [svn:fx-4.x] 14985: Add support for mirroring for both error tips and tool tips in positionTip ().

    Revision: 14985
    Revision: 14985
    Author:   [email protected]
    Date:     2010-03-24 09:40:24 -0700 (Wed, 24 Mar 2010)
    Log Message:
    Add support for mirroring for both error tips and tool tips in positionTip().  The layoutDirection of the toolTip will be the same as the component it goes with, or LTR, if the component is not ILayoutDirectionElement.
    QE notes:
    Doc notes: None
    Bugs: SDK-25821
    Reviewed By: Jason
    Tests run: checkintests
    Is noteworthy for integration: No
    Ticket Links:
        http://bugs.adobe.com/jira/browse/SDK-25821
    Modified Paths:
        flex/sdk/branches/4.x/frameworks/projects/framework/src/mx/managers/ToolTipManagerImpl.as
        flex/sdk/branches/4.x/tools/dependencychecker/frameworkSwcExceptionsList.txt

    Remember that Arch Arm is a different distribution, but we try to bend the rules and provide limited support for them.  This may or may not be unique to Arch Arm, so you might try asking on their forums as well.

  • Pai Chart layout and Tool Tip not refreshing

    Hi All
    We have an application where we displaying data on Pai Chart based on Data-Grid row clicked.
    Its an Polling kind of application, where multiple option are there.
    When a data grid row clicked, in the Pai chart we displaying polling votes in percentage.
    Some question has 2 option and some 4 and out of those few are having votes.
    Ex: Question 1 has 2 option ( A, B ) and both got some votes.
          Question 2 has 3 options ( X,Y,Z ) and only " X " got all the votes.
    So when we clicked on data grid row for Q1 the Pai chart shows all the options ( 2 ) in block dividing manner.
    It has also outward tool tip to show the count and percentage.
    And when we clicked on Q2 which has 3 options but got votes for only 1, the Pai chart shows perfectly with 100% and one circle without divide, but the tool tip of Q1 not cleared. It shows tool tips of Q1 as well as Q2.
    And when adjust the Pai Chart Layout, then only it clears unwanted tool tips, but not automatically.
    For better understanding i have attached the screen shot of the problem. please look into that once.
    So any one who faced similar kind of problem or know the solution then please help me.
    Thanks
    Bijaya Kumar

    Hi Mitalee,
    Would you please check the PAM at https://websmp108.sap-ag.de/~sapidb/012002523100018972812014E
    On page 11 it says 64 bit IE11 is not supported; is your IE11 32 bit or 64 bit?

  • Active Directory Users and Computer not displaying column data?

    I am running Windows 8.1 Enterprise with RSAT installed.  My Domain controllers are Server 2008 R2.
    I am having and issue with Active Directory Users and Computers.  Typically I will turn on Advanced Features and then add Columns for Email address and Display Name.  This for example allows me to easily export lists of users and there email
    addresses among other things.
    The issue is that on my Windows 8.1 client, the columns for Email and Display Name are empty.  It simply will not display this information.  It only displays Name, TYpe and Description.
    If I use a Windows 7 client, the information displays correctly.
    Has anyone run into this issue or heard of this problem when using ADUC on Windows 8.1?

    ADUC is an AD tool that is no longer being improved, with Microsoft now focusing on ADAC (Administrative Center). In 8.1, it has improved quite a bit since 7. You can also just try using the
    ActiveDirectory PowerShell Module, which is easy to use and fairly powerful. It can be simple to export lists, and the module for AD is included with RSAT tools.
    Example:
    Import-Module ActiveDirectory
    Get-ADUser -Filter {Manager -eq "John.Smith"} -Properties DisplayName,Mail | Export-Csv dump.csv -NoTypeInformation
    So, recommendation: either use ADAC, or PowerShell -- ADUC is part of the wave of deprecation.

  • Tool Tip with column Height in CL_GUI_CHART_ENGINE

    Dear All,
    I am generating Columns chart using the class CL_GUI_CHART_ENGINE. I would like to display the column height of every column as tooltip for that column. How can i achieve it ??
    The following is the transformation that i am using -
    <?sap.transform simple?>
    <tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
    <tt:root name="CATEGORIES"/>
    <tt:root name="SERIES"/>
    <tt:template>
    <ChartData>
    <Categories>
      <tt:loop ref="CATEGORIES">
       <Category>
        <tt:value/>
       </Category>
      </tt:loop>
    </Categories>
      <tt:loop ref="SERIES">
        <Series>
           <tt:attribute name="label"><tt:value ref ="LABEL"/></tt:attribute>
           <tt:attribute name="customizing"><tt:value ref ="ID"/></tt:attribute>
           <tt:loop ref="VALUES">
         <Point extension="alt='Capacity'"><Value type="y">
           <tt:value/>
         </Value></Point>
           </tt:loop>
         </Series>
      </tt:loop>
    </ChartData>
    </tt:template>
    </tt:transform>
    Now for all the Columns, the tool tip is same (Capacity). I want to display the column height also along with it. Thank you.
    Regards,
    kartik

    Hi,
    Have you consider using SVG ?
    http://en.wikipedia.org/wiki/Scalable_Vector_Graphics
    Regards.
    From here:
    http://bost.ocks.org/mike/bar/2/
    Code:
    <!DOCTYPE html>
    <style>
    .chart rect {
      fill: steelblue;
    .chart text {
      fill: white;
      font: 10px sans-serif;
      text-anchor: end;
    </style>
    <svg class="chart" width="420" height="120">
      <g transform="translate(0,0)">
        <rect width="40" height="19"></rect>
        <text x="37" y="9.5" dy=".35em">4</text>
      </g>
      <g transform="translate(0,20)">
        <rect width="80" height="19"></rect>
        <text x="77" y="9.5" dy=".35em">8</text>
      </g>
      <g transform="translate(0,40)">
        <rect width="150" height="19"></rect>
        <text x="147" y="9.5" dy=".35em">15</text>
      </g>
      <g transform="translate(0,60)">
        <rect width="160" height="19"></rect>
        <text x="157" y="9.5" dy=".35em">16</text>
      </g>
      <g transform="translate(0,80)">
        <rect width="230" height="19"></rect>
        <text x="227" y="9.5" dy=".35em">23</text>
      </g>
      <g transform="translate(0,100)">
        <rect width="420" height="19"></rect>
        <text x="417" y="9.5" dy=".35em">42</text>
      </g>
    </svg>
    Result:

  • Regarding ALV control: Tool tip for column data

    Hi Group,
    How can I give the tool tip for the data in ALV grid? For column headers I know that, but for the data in the colums how do I give the tool tip info.
    Regards,
    Kummi.

    Hello Kummi
    If you want to have a specific tooltip for an icon displayed in an ALV grid cell then you can use:
    @08<b>\Q</b> <tooltip text><b>@</b>  " shows own tooltip for icon @08@
    I am not sure if the same trick works for "normal" cell values. You may give it a try.
    Regards
      Uwe

  • Corrupt tool tips

    There's something wrong with my tool tips - those little tips or labels that appear next to the mouse pointer when it pauses over a tool / icon.
    Here's an example, from hovering the mouse over the icon to insert in the editor for editing a message here.
    Sometimes it's mangled with the correct tool tip (like in the first example above), and sometimes the tool tip appears by itself (because there is no correct tool tip, like in the second example above - hovering over text shouldn't generate a tool tip). It's the same few out-of-place tool tips that appear and they all seem finance or stock quote related. Here's more:
    Note: the mouse pointer doesn't get capturesd by screenshots but know that it's there right above the tool tip.
    The other strange thing is that this only happens in part of the screen area - baseically center, top.
    Any ideas? I've rebooted, but that's all I've tried so far.

    This always happens! Right after I post, I figure it out: the list from Dashboard is bleeding through somehow:
    So, having my mouse pointer in the same area of the screen where the widget would appear if I activated Dashboard causes the tool tips to appear as if actually was hovering over the widget! How strange. So, I deleted the widget and then put it back in the same spot. Seems OK now.

  • Bridge CS6 tool tips are blocking the buttons!

    When I try to change the layout view (grid, list, etc.) with the buttons on the bottom right, the tool tips appear and I'm not able to click through them. So, basically, when I hover over them, the tool tips are blocking me from doing it.
    I look in Prefs for a Tool Tips checkbox and it's not checked right now, but they're still appearing, and still protecting the buttons from being clicked.
    Anyone know how to turn them off?
    And I have to say this is the most ridiculous problem I ever had with a program. Kinda funny.

    I still don't think it's the right checkbox to deactivate interface tool tips as it's in the "Thumbnails" sections of prefs. (And when I switch that on I get tool tips for thumbnails, when I switch it off I do not get tool tips for thumbnails. But the interface tool tips are always consistent.)
    Well, I'm again afraid. But this time for my big mouth...
    You are very right, I did have a long delay on my machine before the tooltips showed and having the checkbox set to on it seemed directly appearing.
    As there are many inconsistencies in Bridge (in fact throughout the whole Suite) this one is very big. Don't have a good alternative short name for it but calling 'show metadata when hovering over' 'show tooltips' is really a very bad approach
    The version is CS6 and I'm on a 2009 Mac Pro using 10.6.8 if that matters any.
    Thanks, it always matters, especially since this has become a general forum with both Windows and Mac. Different OS and different versions (including detail version number) gives more insight in possible solutions or advice (update etc)
    Also, I noticed that if I make Bridge CS6 smaller than the monitor window, then the tool tips over the buttons do not appear over the buttons anymore, but under them instead. The tool tips seem to be set to appear below the mouse pointer.  When Bridge is maximized and the bottom of the Bridge window touches the bottom of the monitor there is no place else for the tool tips to go, so they get pushed up... and cover the buttons.
    I always have the Dock in sight hence pressing the green button to enlarge my Bridge window to full screen leaves a small free space and as you well discovered has not your problematic behavior with tooltips over buttons.
    I would think Bridge should be able to detect the end of the screen, obviously it does because it knows to move the tool tips up so they don't appear "off screen".
    They should use this detection to determine if the tool tips should appear above or below (or away from the screen edge) the mouse pointer.
    Agreed
    I'll stop calling it a bug and switch it to "oversight". Bottom line though is the tool tips still block the buttons and shield them from being clicked.
    Oversight is the correct word, but besides the above described improvement they really should get rid of the name tooltips in thumbnails and add an option to really hide or show all tooltips as you would expect in a proper application
    Thanks for staying tuned and clarify!
    While the Bridge team tries to read most of this forum it might be wise to make a feature request for this, are you willing to do so since this is your discovery?

  • No provision to provide Tool tip for Default Panel Collection Components

    "View" is a default menu item provided by Panel Collection Component. The "shortDesc" property can set the tool tip for entire panel collection.
    How to set the tool tip specifically for the default components given by panel collection component ?

    Hi,
    panel collection labels and tool tips can be changed through skinning See http://docs.oracle.com/cd/E21764_01/apirefs.1111/e15862/toc.htm and search for af:panelCollection and go to the Resource String section. So far the good news. The bad news is that there is no skin selector to change the tool tip of the "View" menu option (though yo can change the label through af_panelCollection.LABEL_MENU_VIEW). If you need this, please file an enhancement request through customer support.
    Frank
    Ps.: Skinning is documented here: http://docs.oracle.com/cd/E21764_01/web.1111/b31973/af_skin.htm#BAJFEFCJ

  • Once clear Triggers in Tool Tips, now showing white in IE, after newest update?

    I had published on catalyst, and tool tips were clear... after newest Muse udpate the tool tips triggers are now showing as solid white in Explorer. They still look and work fine on my Mac in
    both Firefox and Safari.
    I cannot go in and access the triggers anymore because they are clear - and there is no frame or way to edit!
    1. what is going on with the white boxes now showing.
    2. how would I make a change/move/add to a trigger in tool tips once they are 'filled clear'?

    1. If you can post a link it would make it easier for team/forum to help out.
    2. Yes that does suck and we've all done it. The standard workaround when going for a clear/no fill look is to set the opacity to 1% with a color that matches what's beneath it.  Doing so ensures that it is editable after the fact using the standard click method. The good news is you can get it back, but it often takes a neurosurgeons touch and patience.
      The program is nano sensitive in this state, in my experience. So find the area with your 'missing/non responsive' trigger and very carefully hover the mouse around in micro increments until the trigger is dicovered. Then very carefully click on the dark orange bounding box until you get the blue bounding box. (Note-The cursor must be in the  arrowhead state to get this to work. Not the arrow with the tiny black box and not the arrow with the stem. Just the arrowhead). Once you've rediscovered your trigger (blue  bounding box) do not click again or else you'll have to start this all over. You will now notice at the top left in your menu that the trigger is selected and you can change the  fill from there using the 1% workaround. One other trick to help fascilitate the process-zoom in.
    Keep this in mind for all elements in Muse when going for the invisible look.
    Hope that helps at least one of your glitches.

  • Activity monitor freezes and shows no processes

    I've been having a recurring problem lately. I have two large Numbers files with lots of cell references. When working with these files, my MacBook's brain seems to be melting: operations as simple as changing worksheets can take a few minutes, editing cell contents can take several minutes more. Copying and pasting is a "set it up, make some lunch, come back and check" kind of operation.
    The performance was so remarkably bad that I thought I should open up the Activity monitor and see how much of the CPU Numbers was using. However, I found that whenever I try to open the Activity Monitor, no processes are listed and the monitor hangs indefinitely with the swirling "waiting" pointer. No processes ever show up, no matter how long I wait, and the monitor is frozen with the "waiting" pointer. If I try to force quit the process, it is listed as "Not Responding".
    Any suggestions for what might be going on here and how to fix it? Could the Activity Monitor and Numbers issue be related? I'd like to troubleshoot the Activity Monitor first and then move over to the Numbers forum if necessary to figure out the problem there.
    Thanks very much,
    Adrian

    Had to do a disk repair from the Mac OS X install disk.

  • Making vendor down payment at PO header level and not item level

    Hi
    I am making downpayment to vendor. I am using new functionality in EHP 4 for making downpayment through purchase order. When I run ME2DP for making downpayment, it asks for PO item number also.
    But my requirement is to pay downpayment at PO header level and not PO item level.
    Please let me know how can I do payment at PO header level.

    Dear All,
    I am also facing the same problem. Though Advance is maintained in PO Header Level when we are trying to create  DP Request / DP system is asking line item mandatory. Suppose i have 2 line items  and maintain all the DP amount in first line item. I am making service entry for 2nd line item and bill for the second line item. Then in this case, the Down Payment clearing tab doesn't appear in MIRO. That means I am unable to adjust the advance for the line item though I have to adjust it.
    Problem is that there are more than 300 lines items in PO/WO. Hence it becomes difficult to maintain advance for each line or the user is forced to maintain certain amount in line item..
    Please help ..Its urgent
    Regards,
    Ganesh

  • J Tool Tips - Strange and Awkward Bug

    Hello Everyone,
    I am having a very strange J Tool Tip bug. Okay first of all, the tool tip that I have created works when it is inside of a single panel for a single label. Basically, what I have is a number of J Labels - each having a unique tool tip. Here is the most basic of my code (notice that I have customized my own Tool Tip to have a yellow background and black foreground):
    currentLabel = new JLabel("LABEL TEST")
                // Extends the JLabel and overrides createToolTip() to return a custom tool tip:
                @Override
                public JToolTip createToolTip()
                    JToolTip toolTip = super.createToolTip();
                    toolTip.setComponent(this);
                    toolTip.setBackground(Color.YELLOW);
                    toolTip.setForeground(Color.BLACK);
                    return toolTip;
            currentLabel.setToolTipText("Testing Tool Tip Message");Okay, so here's the deal. Here's the tricky part. When I have this label nested inside of a Grid Bag Layout Panel, it works perfectly fine. It shows up when the user's mouse hovers over the label.
    Here's my problem. The project that I am working on is actually nested in many complicated panels. This project has about 100 java files, so I am just going to cut it short and let you know which kind of panels it is nested in.
    Starting from the lowest panel:
    1. J Panel (Grid Bag Layout)
    2. J Panel (Box Layout)
    3. J Panel (Border Layout)
    4. J Split Pane (Right Side)
    5. J Panel (Border Layout) (Largest Panel)
    One of the things I noticed is that now when I hover over the labels, a very small microscopic blue dot appears right to the left of the mouse cursor. I seriously think this is the Tool Tip, but for some reason it isn't showing any text. The strange thing is that the tool tip works when panels 2, 3, 4, and 5 are non-existent. If you guys have any ideas or suggestions, please let me know! I'd really appreciate it!
    Thanks,
    Brian

    What I might do is : see if listening for mouseEntered and mouseExited events work on the labels when in their complex arrangement. And make a little tooltip class based on JWindow (perhaps with a JLabel on its contentpane so you can display HTML). I found this approach more reliable. Though one would expect this is what is already implemented, the inbilt behaviour may overcomplicate things resulting in some no-shows. I seem to remember having this problem with tootips on table cell renderers.
    Edited by: kina_tji on Jul 23, 2008 6:33 PM

  • Tool Tip Text and JcomboBox/JList

    Is it possible to attach and display a different Tool Tip message for each item in a combobox or jlist.

    Hi try this code it will work
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import javax.swing.plaf.basic.*;
    public class ToolTipComboBoxExample extends JFrame {
    String[] items = {"Swing", "Applet", "RMI", "JDBC"};
    String[] tooltips = {"Swing ", "Applet", "RMI", "JDBC"};
    public ToolTipComboBoxExample() {
    super("ToolTip ComboBox Example");
    JComboBox combo = new JComboBox(items);
    combo.setRenderer(new MyComboBoxRenderer());
    getContentPane().setLayout(new FlowLayout());
    getContentPane().add(combo);
    class MyComboBoxRenderer extends BasicComboBoxRenderer {
    public Component getListCellRendererComponent( JList list,
    Object value, int index, boolean isSelected, boolean cellHasFocus) {
    if (isSelected) {
    setBackground(list.getSelectionBackground());
    setForeground(list.getSelectionForeground());
    if (-1 < index) {
    list.setToolTipText(tooltips[index]);
    } else {
    setBackground(list.getBackground());
    setForeground(list.getForeground());
    setFont(list.getFont());
    setText((value == null) ? "" : value.toString());
    return this;
    public static void main (String args[]) {
    ToolTipComboBoxExample frame = new ToolTipComboBoxExample();
    frame.addWindowListener(new WindowAdapter() {
    public void windowClosing(WindowEvent e) {
         System.exit(0);
    frame.setSize(300, 200);
    frame.setVisible(true);
    Thanks
    Paddy

  • When will Excel Support Tabular Model Table and Column Descriptions via Tool Tip or other display mechanism

    I have noticed that SSMS supports tool tips for the Tabular Model (tables and columns) however Excel 2013 doesn't appear to.   This is a very important feature to our end users.
    Does anyone know when this will be supported?
    Thanks
    M Meyer

    Hi Meyer,
    According to your description, you want to use the tooltip function in Microsoft Excel for the SQL Server Analysis Services Tabular model, right?
    I have tested it on my local environment (Microsoft SQL Server 2012 SP1 and Excel 2013), the result is that the feature is not supported currently. It's hard to say the detail date when this will be supported. If this feature is enabled, Microsoft will announce
    it on the document.
    Besides, if you have any concern about this behavior, you can submit a feedback at
    http://connect.microsoft.com/SQLServer/Feedback and hope it is resolved in the next release of service pack or product. Your feedback enables Microsoft to make software and services the best that
    they can be, Microsoft might consider to add this feature in the following release after official confirmation.
    Regards,
    Charlie Liao
    TechNet Community Support

Maybe you are looking for

  • Calculation in rtf template

    I got error when I perform calculation in a field, the code is <?sum(current-group()/_IFNULL__BE_measures_._TOTAL_COST___0_) div sum(current-group()/_BE_measures_._GROSS_SALES_)?> It shows errors: Caused by: oracle.xdo.parser.v2.XPathException: An in

  • ABAP consumer proxy generation for xMII WSDL

    Hi friends, I have a question related to generation of consumer proxies in ECC Box. I am trying to create a consumer proxy for xMII WSDL's using URL method. For the first WSDL, I was able to create a service consumer proxy successfullly. It created w

  • There is a big looking streak in the middle of the screen why?

    ok so i just got my imac 21.5 i3 like a week ago and today i decided to clean the screen when i notice this big looking streak right in the middle of the monitor and say i wipe it with a free lint cleaning cloth the iklear provided and it goes away b

  • Can't get rid of banner on Login Screen

    This is my personal computer, I downloaded some software from my university called KeyAccess and now I have the universities name stuck on the log in screen. So far I have uninstalled the KeyAccess program, including any Daemon files associated as we

  • Solaris 11 support?

    Hi everyone, anyone knows about the support status of OAS4OS? Is it still an active product? I'm asking because there seems to be no support for Solaris 11. So it's not possible to migrate Solaris 10 servers which authenticate against OID (11) to Sol