Tooltip shall be different to link description

Hello,
in the IC Inbox we have limited space. Therefore we have only the description of service requests in the result list but not the ID of the service request. The description is a link.
Now the requirement is to add a tooltip to this description link which contains the OBJECT_ID.
Any ideas how this tooltip could be added in coulding?
Thank you
Kind regards
Manfred

Hi,
    The spreadsheet icon is a normal table view. I was wrong in assuming that it was a tree view. For normal table views, you can make use of the index variable.
Data:lr_col type ref to if_bol_bo_col,
        lr_iterator type ref to if_bol_bo_col_iterator,
         lr_bo TYPE REF TO if_bol_bo_property_access.
lr_col ?= me->collection_wrapper.
lr_iterator ?= lr_col->get_iterator( ).
lr_bo ?= lr_iterator->get_by_index( iv_index = iv_index ).
lv_object_id = lr_bo->get_property_as_string( iv_attr_name = 'OBJECT_ID' ).
Regards,
Arun Prakash

Similar Messages

  • How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    How do I merge two different libraries, linked to one account? They're on two different computers but I want them to be on one

    This should do the trick
    Home Sharing Learn More
    http://support.apple.com/kb/HT201976
    Best of Luck

  • How can you have multiple, different css link styles?

    Every time I want to create a different looking link just for some copy, it always reverts to the A:link style, even if I create a new style that looks just the way I want. How can I create multiple link styles and then be able to select the one I want at any time???
    I would greatly appreciate any help.
    Allan

    How are you applying the different styles to your links? In most cases, it's easiest to wrap the link(s) in an element, like a < div > that has a class or ID assigned, for instance class="altLinks". Then, set up the CSS style names like:
    .altLinks a:link
    ...and so on. Then, the styles would just apply to links within the element(s) with class "altLinks". Here's a tutorial that might also help:
    http://www.golivecentral.com/pages/tutorials.shtml#basicCSSlinks2
    Otherwise, if you're still having trouble, post back with a link to your page so we can see what's going on.

  • Probably a simple answer; centered links with floating link descriptions, both left and right of the links?

    Attatched is an image of the requested result. I'm new to Dw so this might be an easy bit of code, but with research I haven't been able to find an answer.
    Ideally, the numbers in the middle are links (centered on the page); and the text is a description of the link which floats to either side of the links, but is not necessarily centered; nor linked.
    I would really appreciate the help of someone more knowledgeable. Thanks in advance.
    The code I'm working on follows the image.
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>design communications</title>
    <style type="text/css">
    body,td,th {
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      font-style: normal;
      font-weight: lighter;
      font-size: 10px;
      color: #FB6145;
    body {
      background-color: #FFFFFF;
    .strike {
      text-decoration:line-through;
    .links {
      color: #FB6145;
      text-decoration: none
    a:visited {
      text-decoration: none;
      color: #FFA493;
    a:hover {
      cursor: none;
      text-decoration: none;
    a:active {
      text-decoration: none;
    .back-arrow{
      color: #FB6145;
      text-decoration: none;
      font-size: 14px;
    </style>
    <link rel="shortcut icon" href="images/e_rimoldi_favicon_02.ico" type="image/x-icon" />
    <style type="text/css">
    </style>
    </head>
    <body>
    <p><a href="question mark/prefix_0_0.html">? </a></p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <div class="links">
    <p align="center">| <a href="works_03_01_perspective.html" id="01"
    onmouseover=
    "document.getElementById('02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >01</a> |</p>
    <p align="center">| <a href="works_03_03_plan.html" id="02"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >02</a> |</p>
    <p align="center"> | <a href="works_03_02_section.html" id="03"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >03</a> |</p>
    <p align="center">| <a href="works_03_04_mapping.html" id="04"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('back-arrow').className='links';"
    >04</a> |</p>
    <div class="back-arrow">
    <p align="center"><a href="works index_1.0.html" id="back-arrow"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';"
    >«</a></p>
    </div>
    </body>
    </html>

    hey marty,
    Perhaps this updated code will help clarify. I want the links to be centered on the page. But the link descriptions to float to either side? Does that make sense?
    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>design communications</title>
    <style type="text/css">
    body,td,th {
      font-family: "Gill Sans", "Gill Sans MT", "Myriad Pro", "DejaVu Sans Condensed", Helvetica, Arial, sans-serif;
      font-style: normal;
      font-weight: lighter;
      font-size: 10px;
      color: #FB6145;
    body {
      background-color: #FFFFFF;
    .strike {
      text-decoration:line-through;
    .links {
      color: #FB6145;
      text-decoration: none
    a:visited {
      text-decoration: none;
      color: #FFA493;
    a:hover {
      cursor: none;
      text-decoration: none;
    a:active {
      text-decoration: none;
    .back-arrow{
      color: #FB6145;
      text-decoration: none;
      font-size: 14px;
    </style>
    <link rel="shortcut icon" href="images/e_rimoldi_favicon_02.ico" type="image/x-icon" />
    <style type="text/css">
    </style>
    </head>
    <body>
    <p><a href="question mark/prefix_0_0.html">? </a></p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <p> </p>
    <div class="links">
    <p align="center">| <a href="works_03_01_perspective.html" id="01"
    onmouseover=
    "document.getElementById('02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >01</a> | meddling</p>
    <p align="center"> kongenshus | <a href="works_03_03_plan.html" id="02"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >02</a> |</p>
    <p align="center"> | <a href="works_03_02_section.html" id="03"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '04').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('04').className='links';
    document.getElementById('back-arrow').className='links';"
    >03</a> | design communications</p>
    <p align="center"> green river | <a href="works_03_04_mapping.html" id="04"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( 'back-arrow').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('back-arrow').className='links';"
    >04</a> | utah</p>
    <div class="back-arrow">
    <p align="center"><a href="works index_1.0.html" id="back-arrow"
    onmouseover=
    "document.getElementById('01').className='strike';
    document.getElementById( '02').className='strike';
    document.getElementById( '03').className='strike';
    document.getElementById( '04').className='strike';"
    onmouseout=
    "document.getElementById('01').className='links';
    document.getElementById('02').className='links';
    document.getElementById('03').className='links';
    document.getElementById('04').className='links';"
    >«</a></p>
    </div>
    </body>
    </html>

  • How can I send to a different URL link than what the text states in Acrobat?

    Hi there
    I know how to create URL links in my document using Acrobat but
    How can I create a link that goes to a different URL desintation other than the one the text states?
    For example
    the text states
    www.aaaaa.com
    and I want it to state this,
    but I want the link to direct to
    www.aaaaa.com/abcdefghijkl
    I dont want to have to create a link object, I want it to stay as text?
    Is this even possible?
    Any advise?
    Thanks

    try67 wrote:
    Actually, it is possible to specify your own tooltip text, if you use a
    button instead of a link.
    You just set the button's action to "Open a weblink" and it will act the
    same as a link, but you'll have more control over how it looks and behaves.
    Hi there
    I cant see the term "Open a weblink". Can you advise please?
    Also then how do you change the "Tooltip text" please?

  • Purchasing Apps for different non-linked iPhones with one iTunes account

    Hi:
    Is it possible to use my iTunes account to purchase apps for different iPhones without linking those phones to my iTunes account?
    I am trying to purchase a specific application (WhatsApp) for some friends who have iPhones but not iTunes accounts. I don't want to link those phones to my iTunes account, just buy this specific app for them.
    When I try to purchase directly from their iPhones, I get a wrong password message. Is Apple blocking this purposely?
    Thanks,

    All 3rd party apps - paid and free apps include DRM protection which is tied to the iTunes account used to purchase/download the app, so the answer is no.

  • HT1688 On my iphone 4 below the search window, I have three greyed out safari icons with different web links attached

    I have a iPhone 4 8GB. I have three greyed out safari icons that doesn't say safari but a web link. It's like a bookmark to your homepage but not in your homepage.   I noticed it when I deleted all my web pages and on that one web page where it says "search or type in a address" right below it where it's just all white, there's three grey looking safari icons with each one with a different web site that's attached to it. When I tap on it it goes to a specific website. For ex one if them says www.longchamp.com, the other macys.com. There's no way to delete it. The wired thing is each one in color it like three shades of grey . Light, med and darker grey icons. When I hold down the icon you can move it around but can't delete, nothing just nothing. It's been there for the longest time I can remember. Do you know what this is? I took a pic of it. I don't know how to attach it to this discussion. Thank you for your patience and understanding.

    I seem to have fixed it by putting <div  class="clearfloat"></div> after the navigation bar?

  • Distinguish between different checkboxes/links in onInputProcessing

    Hi everybody,
    I've got a form with two links and two checkboxes. I would like to trigger a serverside event handling when any of these elements is pressed. So I use Javascript: the page attribute 'navigate' is filled with different values on client side (document.view.navigate.value = action) and the form then sent by 'document.forms[0].submit();'.
    <form name="view">
    <a href="javascript:submit('select1');">
    <a href="javascript:submit('select2');">
    <INPUT TYPE="checkbox" NAME="cb1" VALUE="X" onclick="javascript:submit('upload1');">
    <INPUT TYPE="checkbox" NAME="cb2" VALUE="X" onclick="javascript:submit('upload2');">
    <input type="hidden" value="" NAME="navigate">
    <input type="hidden" value="" NAME="OnInputProcessing(input>">
    <endform>
    <script>
    function submit(action) {
       document.view.navigate.value = action;
       document.forms[0].submit();}
    </script>
    This works fine for the two links: 'navigate' is filled with either 'select1' or 'select2'. However 'navigate' is initial when I select one of the checkboxes.
    Unfortunately I can't use 'htmlb:checkbox' in this project.
    Can You help me there?
    Best regards,
    Markus

    I tried using this syntax and i was able to capture the event.
    <script>
    function submit_action(action)
      alert(action)
    </script>
    <input type="checkbox" name="Bike" onclick="submit_action('upload')" />
    This is passing the upload to my javascript function.
    hope this helps.
    Cheers
    cheers
    Message was edited by: vin

  • How to assign a class for different colored links

    Hi. I'm new to CSS and HTML and Dreamweaver. I'm trying to
    get links to be different colors within the same page. I have a
    navbar with a CSS style that I've assigned colors to all my links
    there. They work. But if I attempt to change the links in the main
    content it screws up the navbar links.
    So, now, I'm trying to assign the different colors to the
    links in the main content. I have the link color down but I can't
    seem to get the visited, hover, active to work.
    So, I read somewhere you have to assign a class to be able to
    have different colors for your links on the same page. There is a
    class assigned to the links I want to change but it only assigns
    the link color, not the visit,hover,active colors. I don't know
    where I am supposed to put the code so that only the main content
    links are changed. Here is what I came up with from reading and
    studying. Can somebody tell me what's wrong with it and where I am
    supposed to put what in each page? This is just a CSS style page I
    made and I have no idea if I even did that right. Then, I can't
    figure out how to tell each page to include it for that class only.
    Thanks.
    @charset "utf-8";
    /* CSS Document */
    <class="style49"
    <style type="text/css">
    a:link {color: #3333FF}
    a:visited {color: #009900}
    a:hover {color: #6600CC}
    a:active {color: #FF0000}
    </style> </class>

    Pseudo-classes and container styles are what you need - here
    are some
    tutorials.
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    ==================
    "Newbie744" <[email protected]> wrote in
    message
    news:fn3***$m6q$[email protected]..
    > Hi. I'm new to CSS and HTML and Dreamweaver. I'm trying
    to get links to
    > be
    > different colors within the same page. I have a navbar
    with a CSS style
    > that
    > I've assigned colors to all my links there. They work.
    But if I attempt
    > to
    > change the links in the main content it screws up the
    navbar links.
    >
    > So, now, I'm trying to assign the different colors to
    the links in the
    > main
    > content. I have the link color down but I can't seem to
    get the visited,
    > hover,
    > active to work.
    >
    > So, I read somewhere you have to assign a class to be
    able to have
    > different
    > colors for your links on the same page. There is a class
    assigned to the
    > links
    > I want to change but it only assigns the link color, not
    the
    > visit,hover,active
    > colors. I don't know where I am supposed to put the code
    so that only
    > the
    > main content links are changed. Here is what I came up
    with from reading
    > and
    > studying. Can somebody tell me what's wrong with it and
    where I am
    > supposed to
    > put what in each page? This is just a CSS style page I
    made and I have no
    > idea
    > if I even did that right. Then, I can't figure out how
    to tell each page
    > to
    > include it for that class only.
    >
    > Thanks.
    >
    > @charset "utf-8";
    > /* CSS Document */
    > <class="style49"
    > <style type="text/css">
    > a:link {color: #3333FF}
    > a:visited {color: #009900}
    > a:hover {color: #6600CC}
    > a:active {color: #FF0000}
    > </style> </class>
    >
    >
    >

  • Is it possible to create an animated gif with a different hotspot/link on each state?

    Hi! I was unable to find the answer to my question by searching, so sorry if this has been discussed already.
    I'm trying to make an animated gif that's basically a little slideshow with a different link on each slide (or state, as Fireworks calls them). But it only seems to let me use one hotspot for the whole thing, even if I insert in the layer instead of in the state. I tried using slices instead of hotspots, and it does the same thing.
    Is it possible?

    Ok, thanks! I have another way to do what I'm trying to do, I just thought it might be better to do it this way. Obviously I was wrong!
    Thanks again!

  • Different CSS link effects on the same page?

    I have a CSS menu that looks good and works using the a:hover
    and a:link rules. I want to have the links on the rest of the page
    act differently. Can someone help me understand how to create
    different CSS rollover effects for different links on the same
    page? Pleas be specific, I’m not great with CSS or code in
    general.

    Pseudo-classes and container styles are what you need - here
    are some
    tutorials.
    http://www.mako4css.com
    http://www.thepattysite.com/linkstyles1.cfm
    http://www.projectseven.com/tutorials/pseudoclasses/index.htm
    Murray --- ICQ 71997575
    Adobe Community Expert
    (If you *MUST* email me, don't LAUGH when you do so!)
    ==================
    http://www.dreamweavermx-templates.com
    - Template Triage!
    http://www.projectseven.com/go
    - DW FAQs, Tutorials & Resources
    http://www.dwfaq.com - DW FAQs,
    Tutorials & Resources
    http://www.macromedia.com/support/search/
    - Macromedia (MM) Technotes
    ==================
    "edwheels" <[email protected]> wrote in
    message
    news:ej2e5g$i4p$[email protected]..
    >I have a CSS menu that looks good and works using the
    a:hover and a:link
    >rules.
    > I want to have the links on the rest of the page act
    differently. Can
    > someone
    > help me understand how to create different CSS rollover
    effects for
    > different
    > links on the same page? Pleas be specific, I?m not great
    with CSS or code
    > in
    > general.
    >

  • Creating a SVG Pie Chart With Different Portion Linking To Different URL

    Is it possible to create a SVG pie chart in which different portion will point to different URL. on HTML DB version 1.5.1.00.12
    For example i've tried something like this:
    on page 20 i have a svg pie chart
    select
    'f?p=&APP_ID.:21:#APP_SESSION#::::P21_DD_SALESORG:'||region,region,code from demo_region;
    i have a query in page 21 like this:
    select country from demo_country where region= :P21_DD_SALESORG;
    so when i click on a particular region on the pie chart on page 20 the value of item
    P21_DD_SALESORG on 21 should be set.
    but the value of P21_DD_SALESORG is always getting passed as NULL from the pie chart.
    I've tried it on HTML DB version 1.5.1.00.12
    Look for an early reply
    Thanks & Regards,
    Rupak
    Message was edited by:
    user445907

    hi user445907--
    your link column in your chart query seems to us the correct syntax, so i'd imagine the issue is with your data/query or the item name in question...
    check the query and data: make sure your query returns valid values to be passed of to P21_DD_SALESORG. if so, you should see your links correctly formed as you hover your mouse over the individual slices. if your links look good then check your item names.
    item names: if your links above look okay, then might you be setting the value of the incorrect item? please confirm that. after clicking a pie slice to get to page 21, check to see that P21_DD_SALESORG is correctly set by clicking the Session link in the developer toolbar.
    basically, i'm suggesting that because your link column in your query looks okay, you'd want to see at what point the NULL value is being passed/set. try tracing things from the chart query over to page 21 (and try going backwards if you have to). if you can't find the disconnect, please feel free to set up an example on an instance, where i can take a look.
    thanks,
    raj

  • Use Mail to send from a different account linked to Gmail

    I use Gmail as my main personal email account and usually use with Mail via POP.
    I also have Gmail set up to send from another account (my work address) which I can do by selecting a different "From".
    This second email address is actually a MS Exchange Server mailbox, and I think the Gmail is just sending 'on behalf of' and getting replies sent to that address.
    Is it possible to get the same results directly within Mail? (Not a huge problem if not, I can just log onto the Gmail website, but it would be nice to use Mail if possible).

    http://forums.macrumors.com/archive/index.php/t-573678.html
    I've had the same issue as you, and found this helpful.
    Basically go into the Mail preferences and under accounts add the accounts (which Gmail gathers) that you want to send from to the "Email Adress" bar using a comma. For example:
    Email Adress: [email protected], [email protected], [email protected]
    Then a drop-down menu will appear when creating/responding to mail that allows you to select which account to send from.
    It can't seem to automatically respond to emails using the address it was sent to unfortunately, which Gmail cleverly does. But it's a step closer.
    Anyways, check out the link. It was helpful for me!

  • How different fields linked with Application Utilities Lookups

    Hi,
    I need to know how different fields at different forms are linked with utilities lookups and pick the values(meaning)?
    For example #1;
    at Organization form, Type of organization is must to define, value of Type comes from Utilities lookups. Type field name is ORGANIZATION_TYPE (Help ---Diagonestics --- Examine), if we try to search the ORGANIZATION_TYPE in utilities lookups we will not find it, we will find if we enter in front of type ORG_TYPE and search then system displays all the codes and meanings defined in the system.
    #2;
    at People -- Additional Information form, Nationality is defined which is picked up from utilities lookups. Nationality field name is LOC_ITEM08 (Help ---Diagonestics --- Examine), if we try to search the LOC_ITEM08 in utilities lookups we will not find it, we will find if we enter in front of type NATIONALITY and search then system displays all the codes and meanings defined in the system for different nationalities.
    my question, what's the relationship b/w
    ORGANIZATION_TYPE to ORG_TYPE
    LOC_ITEM08 to NATIONALITY
    I hope that my question is simple and you guys understand it. Please reply soon.
    Regards,

    Hi
    There is no link between the block/field name you see in help->examine and the application utilities lookup type. I'm afraid this is just something you have to learn as you go!
    Regards
    Tim

  • Context menu hotkey to open in new tab is different for links (T) & bookmarks (W); using T for bookmark deletes bookmark!--why?

    When I want to open a link in a new tab, I right-click and press T. I ''think'' that the same key used to work for opening bookmarks in new tabs, also. At least I developed a reflex that always chose T for a new tab, whatever I was right-clicking on. Then a while ago, probably after one of the updates I automatically install (some time in version 3.x), I started noticing something different and extremely frustrating: not only is the hotkey for opening bookmarks in new tabs now different (W instead of T), which is just poor design--but to add injury to insult, when my still-stubborn reflexes pressed T, the bookmark was ''deleted''. Gone. I have thousands of bookmarks, and I make them so I don't have to remember things. If one is lost, there may be no finding the page again.
    EDITED:
    Having posted this problem, I just realized that I've answered the why-it-happens part of the question. We're left with the why-was-it-allowed-to happen, but that's unimportant if we can put an end to the confusing behavior.
    T in the bookmark panel and menus is Cut, which is standard in all kinds of software, and that my lost bookmarks could be restored IF I remembered to paste them again immediately. (I swear I checked it out just before originally posting, and Cut didn't appear, though Copy did. Maybe I was hallucinating.) Anyway, knowing this will help with the long-term problem, but it's still a bad idea to have two different hotkeys for the same operation. Hence what needs to change is using T as the hotkey in the links context menu.
    Here's my proposal: Change the hotkeys for "Open in new window" and "Open in new tab" in both the right-click menu for links and the right-click menu for bookmarks. Right now we have:
    Links
    * Open Link in New Tab (T)
    * Open Link in New Window (W)
    Bookmarks
    * Open Link in New Tab (W)
    * Open Link in New Window (N)
    N0te that the bookmarks menu is mnemonically backwards; Window should be W. Both menus should be:
    * Open Link in New Tab (N)
    * Open Link in New Window (W)
    Can someone take care of this in an update, please?

    This also drives me nuts, I work in research online and use firefox as its tabbed browing is so good, and I ofetn have to open lots of links in rapid succession from web-pages - obviously I use right click T as the fasterst method of doing this, and I use it so ofetn that it is now a reflex.
    But, whenever I try to open a bookmark from my toolbar (much less often) I tend to deletye it, and if I am lucky enough to notice before I do anything else I have to go through a laborious process to undo the delete...
    Interesting to read the reason above, but I would suggest that this is something that needs to be standardised across all of a browser's context menus, otherwise browsing becomes jarring.
    I am all in favour of 'T' opening in a new tab from all context menus, but if this is not do-able I think you should consider picking a different letter. The N & W proposal above is good.
    Thanks!

Maybe you are looking for