Apex Calendar Context (right click) menu

Hi all,
Apex version: 4.2
Plugin: context(rightclick) menu by Vikram
I'm using this plugin and it works perfectly for SQL Reports and IRs. For example this function opens a new popup window with the ID selected by right clicking an entry.
function myMenuAction(action, el, pos)
  if (action=='TEST')
      window.open('f?p=&APP_ID.:52:&SESSION.::NO::P1_ID:' + $(el).children('td[headers="ID"]').text(),'Popup','height=800,width=800,toolbar=no,directories=no,status=no,menubar=no,scrollbars=yes,resizable=no ,modal=yes');
...I want to know if there is a way to do the same on an apex calendar entry.
Thanks in advance.
Matt.
(changed 'handle')
Edited by: 942631 on 08.04.2013 03:24
Edited by: 942631 on 08.04.2013 03:43
Edited by: 942631 on 08.04.2013 03:43

Matt S. wrote:
http://apex.oracle.com/pls/apex/f?p=62302:1
User: demo
PW: demo
When i do the same on the calendar ("Home") i don't get the ID "http://apex.oracle.com/pls/apex/f?p=62302:4:111941727026117::P3_X".
What i expect is (in this example) "http://apex.oracle.com/pls/apex/f?p=62302:4:111941727026117::P3_X:*7499*"
This is what i wanted to do. I tried different things to achieve the same result as in "TS2".you haven't provided the workspace login details to check if this works but I managed to see that you are currently using a jquery selector *#CALENDAR_PRZ_LIST table tr*
try this instead
.Calendar tbody tr td div

Similar Messages

  • Run script from explorer context(right-click) menu

    Hi,
    I have an existing powershell script which removes certain filetypes from a directory however it requires the script and shortcut to be in the directory I want to process. I was wondering if it was possible to put this script (or a VBS equivalent) in a central
    location, create an entry on the explorer context menu that when run would call the script using the current directory as the directory that the script is to process.
    I don't mind if this is entirely powershell/VBS/.BAT or even if there is some 3rd party app that can easily form part of the process. I'd appreciate any recommendations how to approach this.
    Thanks

    The context menus are defined by registry entries.
    [HKEY_CLASSES_ROOT\Folder\shell\PowershellScript]
    @="My Powershell Script"
    [HKEY_CLASSES_ROOT\Folder\shell\PowershellScript\command]
    @="CMD.EXE /C Powershell.exe -File C:\\Scripts\\MyScript.ps1 %1"
    %1 is generated by the context menu and is the folder name
    The script needs to accept this path as parameter.
    Creating Shortcut Menu Handlers
    http://msdn.microsoft.com/en-ca/library/windows/desktop/cc144171(v=vs.85).aspx

  • How to know if delete series or occurrence in outlook 2010 in calendar from right click menu from UI?

    I need delete one series in outlook 2010, but when check this item by   
    OlRecurrenceState recurState = olApptNotRecurring;
    m_spItem->get_RecurrenceState(&recurState);
    recurState is always occurrence. I want to know which menu item I selected "Delete Series" or "Delete Occurrence"?

    Hello,
    The
    GetOccurrence method of the RecurrencePattern class returns a specific instance of the AppointmentItem object
    on the specified date. Then you may call the
    Delete method of the AppointmentItem class which removes the item from the folder that contains the item.
    The Delete method moves the item from the containing folder to the Deleted Items folder.
    If the containing folder is the Deleted Items folder, theDelete method removes the item permanently.
    The
    RecurrenceState property of the MailItem class returns an OlRecurrenceState constant
    indicating the recurrence property of the specified object. You can use it to determine whether it belongs to the recurrence or exceptions and etc.
    Be aware, when you work with recurring appointment items, you should release any prior references, obtain new references to the recurring appointment item before you access or modify the item, and release these references as soon as you are
    finished and have saved the changes. This practice applies to the recurring AppointmentItem object, and any Exception or RecurrencePattern object.
    Finally, you may find the
    How To: Create a new recurring Outlook Appointment item article helpful.

  • Copying a table with the right-click menu in schema browser fails to copy comments when string has single quote(s) (ascii chr(39))

    Hi,
    I'm running 32-bit version of SQL Developer v. 3.2.20.09 build 09.87, and I used the built in context menu (right-clicking from the schema browser) today to copy a table.  However, none of the comments copied.  When I dug into the PL/SQL that the menu-item is using, I realized that it fails because it doesn't handle single quotes within the comment string.
    For example, I have a table named WE_ENROLL_SNAPSHOT that I wanted to copy as WE_ENROLL_SNAPSHOT_V1 (within same schema name)
    1. I right-clicked on the object in the schema browser and selected Table > Copy...
    2. In the pop-up Copy window, I entered the new table name "WE_ENROLL_SNAPSHOT_V1" and ticked the box for "Include Data" option.  -- The PL/SQL that the menu-command is using is in the "SQL" tab of this window.  This is what I extracted later for testing the issue after the comments did not copy.
    Result: Table and data copied as-expected, but no column or table comments existed.
    I examined the PL/SQL block that the pop-up window issued, and saw this:
    declare
      l_sql varchar2(32767);
      c_tab_comment varchar2(32767);
      procedure run(p_sql varchar2) as
      begin
         execute immediate p_sql;
      end;
    begin
    run('create table "BI_ETL".WE_ENROLL_SNAPSHOT_V1 as select * from "BI_ETL"."WE_ENROLL_SNAPSHOT" where '||11||' = 11');
    select comments into c_tab_comment from sys.all_TAB_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and comments is not null;
    run('comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '||''''||c_tab_comment||'''');
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       run ('comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''');
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    The string of the table comment on WE_ENROLL_SNAPSHOT is this:
    WBIG table of frozen, point-in-time snapshots of Enrolled Students by Category/term/pidm. "Category" is historically, and commonly, our CENSUS snapshot; but, can also describe other frequencies, or categorizations, such as: End-of-Term (EOT), etc. Note: Prior to this table existing, Census-snapshots were stored in SATURN.SNAPREG_ALL. All FALL and SPRING term records prior-to-and-including Spring 2013 ('201230') have been migrated into this table -- EXCEPT a few select prior to Fall 2004 (200410) records where there are duplicates on term/pidm. NO Summer snapshots existed in SNAPREG_ALL, but were queried and stored retroactively (including terms prior to Spring 2013) for the purpose of future on-going year-over-year analysis and comparison.
    Note the single quotes in the comment: ... ('201230')
    So, in the above PL/SQL line 11 grabs this string into "c_tab_comment", but then line 12 fails because of the single quotes.  It doesn't know how to end the string because the single quotes in the string are not "escaped", and this messes up the concatenation on line 12.  (So, then no other column comments are created either because the block throws an error, and goes to line 22 for the exception and exits.)
    When I modify the above PL/SQL as my own anonymous block like this, it is successful:
    declare
      c_tab_comment VARCHAR2(32767);
    begin
    SELECT REPLACE(comments,chr(39),chr(39)||chr(39)) INTO c_tab_comment FROM sys.all_TAB_comments WHERE owner = 'BI_ETL'   AND table_name = 'WE_ENROLL_SNAPSHOT'  AND comments IS NOT NULL;
    EXECUTE IMMEDIATE 'comment on table BI_ETL.WE_ENROLL_SNAPSHOT_V1 is '''||c_tab_comment||'''';
    for tc in (select column_name from sys.all_tab_cols where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT')
        loop
       for c in (select REPLACE(comments,chr(39),chr(39)||chr(39)) comments from sys.all_col_comments where owner = 'BI_ETL' and table_name = 'WE_ENROLL_SNAPSHOT' and column_name=tc.column_name)
       loop
       EXECUTE IMMEDIATE 'comment on column BI_ETL.WE_ENROLL_SNAPSHOT_V1.'||tc.column_name||' is '||''''||c.comments||'''';
    end loop;
    end loop;
    EXCEPTION
      WHEN OTHERS THEN NULL;
    end;
    On lines 4 and 8 I wrapped the "comments" from sys.all_tab_comments and sys.all_col_comments with a replace command finding every chr(39) and replacing with chr(39)||chr(39). (On line 8 I also had to alias the wrapped column as "comments" so line 10 would succeed.)
    Is this an issue with SQL Developer? Is there any chance that the menu-items can handle single quotes in comment strings? ... And, of course this makes me wonder which other context menu commands in the tool might have a similar issue.
    Thoughts?
    thanks//jacob

    PaigeT wrote:
    I know about quick drop, but it isn't helpful here. I want to be able to right click on a string or array wire, navigate to the string or array palette, and select the corresponding "Empty?" comparator. In this case, since I do actually know where those functions live, and I'm already using my mouse to right click on the wire, typing ctrl-space to open quick drop and then typing in the function name is actually more work than navigating to it in the palette. It would just be nice to have it on hand in the location I naturally go to look for it the first time. 
    I don't agree with this work flow.  Right hand on mouse, left hand on home keys.  Pressing CTRL + Space is done with the left hands, and then you could assign "ea" to "Empty Array" both of which is accessible with the left hand.  Darren posted a bunch of great shortcuts for the right handed developer.
    https://decibel.ni.com/content/docs/DOC-20453
    This is much faster than waiting for any right click menu navigation, even if it is found in the suggested subpalette.
    Unofficial Forum Rules and Guidelines - Hooovahh - LabVIEW Overlord
    If 10 out of 10 experts in any field say something is bad, you should probably take their opinion seriously.

  • I was on facebook and deleted an icon by using the right-click menu but then all my pictures and all profile pictures, could no longer be seen. I was able to view them in Explorer so this is something I did in Firefox. How can I unblock a site?'

    '''I was on facebook and deleted an icon by using the right-click menu but then all my pictures and all profile pictures, could no longer be seen. I was able to view them in Explorer so this is something I did in Firefox. How can I unblock a site?'''

    If you select that right-click context menu entry then you block all images from that domain and not one specific image, so do not use that.
    * Check the exceptions in Tools > Options > Content: Load Images > Exceptions (e.g. sphotos.ak.fbcdn.net)
    You can use these steps to check if images are blocked:
    * Open the web page that has the images missing in a browser tab.
    * Click the website favicon ([[Site Identity Button]]) on the left end of the location bar.
    * Click the "More Information" button to open the "Page Info" window with the Security tab selected (also accessible via "Tools > Page Info").
    * Go to the <i>Media</i> tab of the "Tools > Page Info" window.
    * Select the first image link and scroll down through the list with the Down arrow key.
    * If an image in the list is grayed and there is a check-mark in the box "<i>Block Images from...</i>" then remove that mark to unblock the images from that domain.

  • A long left click shows the right click menu

    When I hold down the left mouse button, the right click menu appears.
    I want to turn off this function, but can't remember which extension controls it or whether the function is built in to Firefox.

    Hooray!! Found it! Thank you Google.
    I found an old - very old - thread on Mozillazine.org:
    http://forums.mozillazine.org/viewtopic.php?f=38&t=340572
    And it IS a normal Firefox feature, but is normally OFF.
    I think I must have recently turned it on after reading a "Firefox Tips and Tricks" article somewhere.
    Anyway, the preference is called "ui.click_hold_context_menus".
    And I just remembered that I added it in my "user.js" preferences file, amongst a load of others:
    * Disable the Delay When Installing New Extensions
    user_pref("security.dialog_enable_delay", 0);
    * To turn off the URL greying
    user_pref("browser.urlbar.formatting.enabled", false);
    * To unhide the "http" portion of a URL
    user_pref("browser.urlbar.trimURLs", false);
    * Enable spell checker in multi-line text boxes & single-line text boxes
    user_pref("layout.spellcheckDefault", 2);
    * Double underline style
    user_pref("ui.SpellCheckerUnderlineStyle", 4);
    * Cycle through open tabs with Ctrl+Tab
    user_pref("browser.ctrlTab.previews", false);
    * Disable Animations for Full Screen
    user_pref("browser.fullscreen.animateUp", 0);
    * Click and hold on a hyperlink to show the context menu
    user_pref("ui.click_hold_context_menus", true);
    * Instant Apply Preferences Without Closing Options Window
    user_pref("browser.preferences.instantApply", true);
    * Middle-click in any textfield, addressbar or searchbox to paste clipboard
    user_pref("middlemouse.paste", true);
    So there's a lesson to be learned here: don't add too many tweaks to your Firefox preferences at the same time or you may forget what you did!
    Thanks, all. I'll now mark this as "Solved"!

  • How to get rid of right click menu?

    I like to mouse over a hyperlink in a web page and select "open in a new tab". The right click menu jumps in the way. I don't like or use the right click menu. How do I stop it from stopping me? As a side note, the reason I like "open in a new tab" is that some websites will open on the same page and in some events the back button will not return you to that page. I find the new tab very helpful and the right click menu a pain in the ---.
    Win 8.1
    Firefox - newest
    Alternatively, is there a way to add "open in a new tab" to the menu that gets in the way?
    I was trying to open "Sign Up/Sign In" in a new tab.
    Completely irrelevant to my question, but since you see my tabs, I was watching Jon Stewart on Hulu. He was raving about the Katy Perry Superbowl show. I wanted to see what he was talking about. I don't give a flying crap in the rain about the Stupor Bowl.

    The right-click menu is context-sensitive. When you right-click a link, you should have the option to open in a new tab, new window, or new private window. (In a private window, "new window" is not displayed.) The menu in your screen shot would normally appear if you clicked a blank area of the page without a link directly under the mouse pointer.
    I can't think of any built-in way to get the Open in New Tab command just mousing over a hyperlink. Do you have an add-on that does that automatically for you? If so, I wonder whether it might need an update?

  • Issue with right-click menu after latest update

    After updating Firefox, the right-click menu is showing much more commands than before (Play, Pause, Mute etc. etc.), most of them out of context ("Open Link in New Tab" when there is no link) and none of them working.

    Issues with a massive right-click context menu have been reported as caused by Firebug, so make sure to update Firebug to the latest version.
    *https://support.mozilla.org/kb/Troubleshooting+extensions+and+themes

  • Is there any way of removing the browser buttons from the right click menu?

    Recently when I right-click on a web page, there are browser buttons (forward, backward, refresh, bookmarks) on the right-click menu for some inexplicable reason. I mean, its kind of absurd that anyone would put browser buttons there, considering the real browser buttons literally right there at the top of the window, and I guess that kinda bugs me.
    Anyway, how did I get rid of them? There doesn't seem to be any way to do so in the customize window, and I've been looking for an add-on but don't really know what to search for. Does anyone know?
    Where did those come from anyway? They weren't there a week ago, and I'm pretty sure these things don't normally just pop up out of nowhere. If nobody knows, its really not important. The important thing is getting rid of them. Thanks!

    That was a new feature in Firefox 32, which was released back in September. Use this UserStyle to get rid of those buttons and restore the text menu items.
    https://userstyles.org/styles/104945/fx-32-context-menu-full-text
    ''You'll need the Stylish extension to be able to install UserStyles.''
    https://addons.mozilla.org/en-US/firefox/addon/stylish/

  • Removing right-click menu items

    When I highlight a group of text in a web page and right click the text, There are 4 options in the menu for converting the text to PDF.
    How do I remove these options from the menu?

    Why doesn't adobe have an option within settings to remove shell/context/menu items?
    For those who don't want the extra crap cluttering up their menus...
    In winXP
    -(with IE closed), click 'start', 'control panel', 'internet options'.
    -Click on the 'programs' tab.
    -click 'manage ad-ons'
    -Find the Browser Helper Object called 'AcroIEToolbarHelper Class',
    --highlight it and click 'disable'.
    -Click 'ok' to close the manage ad-ons window, click 'ok' to close the internet options window.
    You still need to remove the items from the right-click menu.
    (*everyone puts a disclaimer so here goes. If you are scared to edit the registry...don't. Create a restore point, don't touch any other entries except the ones listed.)
    -click 'start', 'run', type 'regedit', click 'ok'
    -go to this entry "[HKEY_CURRENT_USER\Software\Microsoft\Internet Explorer\MenuExt]"
    -delete the 8 Adobe 'convert....' entries. (or just the ones you want gone).
    (You can export them if you want, just highlight, right-click, export, and save them somewhere, but it's not necessary. If you want them back just go to 'internet options' in 'control panel' and 'enable' the Browser Helper Object again. If you re-enable it, the next time you start IE the registry entries and right-click items are replaced.)

  • Cannot not click on menu that appears when i right click my taskbar, as the right click menu dissapears when i move mouse over to the right click menu

    PROBLEM: RIGHT CLICK CONTEXT MENU DISAPPEARS WHEN TRYING TO LEFT CLICK AN OPTION
    Hi,
    Im using Windows 7, and i could always
    go down to my TaskBar and Right Click
    Icons, and active icons, which would bring up
    the standard Right Click Menu list.
    PROBLEM
    As soon as i moved my Mouse away from
    the bottom Window 7 Task Bar to go a couple
    of millimeters above to left click an option on
    the Context Menu i opened with my right click,
    The whole Menu disappears, and this happens in
    Firefox version 29.01, other programs in Firefox,
    and other such as Skype.
    When i was running Firefox 28
    i didn't have this problem, can you help me out.
    Thank You
    Kev Borg

    '''PROBLEM'''
    '''RIGHT CLICK MENU DISAPPEARS WHEN YOU MOVE YOUR MOUSE TO LEFT CLICK A MENU OPTION ON THE RIGHT CLICKED MENU.'''
    ''''''YOU CAN'T BECAUSE AS YOU MOVE YOUR MOUSE TO THE MENU YOU JUST RIGHT CLICKED TO OPEN DISAPPEARS BEFORE YOU GET A CHANCE TO LEFT CLICK YOUR CHOICE.''''''
    '''SOLUTION'''
    '''1]''' GO TO '''CONTROL PANEL''' AND CLICK TO VIEW MENU
    '''2] ''' GO TO "'''EASE OF ACCESS CENTRE'''" AT THE TOP.
    '''3]''' LEFT CLICK ON MENU ITEM "'''EASE OF ACCESS CENTRE'''"
    '''4]''' AFTER YOU LEFT CLICK ON "'''EASE OF ACCESS CENTER'''" IT APPEARS.
    '''5]''' LOOK DOWN THE LIST TILL YOU FIND "'''MAKE THE MOUSE EASIER TO USE'''"
    '''5]''' THE TOP SECTION SHOWS YOU HOW TO CHANGE YOUR MOUSE COLOURS ETC.
    '''6]''' SCROLL DOWN TILL YOU SEE THIS HEADING "'''MAKE IT EASIER TO MANAGE WINDOWS'''"
    '''7]''' RIGHT UNDER THAT MENU THERE IS CHECK BOX,
    "'''ACTIVATE A WINDOW BY HOVERING OVER IT WITH YOUR MOUSE"
    '''8] MAKE SURE THERE IS NOT A TICK IN THAT OPTION BOX, IF THERE IS UN TICK IT AND APPLY AND CLICK OK TO SAVE.
    And now you should have No More Problems with your Right Click Menu disappearing when you move your mouse over to the menu to left click a menu item on that right clicked menu.
    SOLUTION FIXES PROBLEM.
    Thank You and i hope this answer my help any other people who have had this frustrating problem.
    cheers KiwiKev

  • The right click menu pops up after I push the right mouse button, instead of when I release it.

    I am using an extension All-In-One Gestures. It works on my other installation of Firefox 4 - particularly, the right-click menu pops up if I click right mouse button and then release it so I can perform gesture or turn the wheel instead of getting a right click menu.
    But on this installation (basically the same addons and OS), the right-click menu pops up on pushing down the right mouse button so the right-button+wheel gestures do not work, and the menu stays there while I am performing the gesture which is rather annoying.
    So I though maybe there is some obscure configuration option to toggle to make right-click menu pop up after the button release? Or is this entirely the extension's fault? Note that it does work as expected on other installation...

    You have to enable in Firefox
    -> Options -> Content -> Activate JavaScript (yes) -> More
    -> Allow scripts the following actions
    -> Inactivate or replace context menu (yes)
    in order to allow All-in-one-Gesture to block the immediate appearance of the context menu.
    If you forbid Firefox JavaScript and/or the manipulation of the context menu by use of JavaScript, All-in-one-Gesture cannot work properly.

  • ITunes 9 right-click menu, 'get info' replaced with 'play/pause'

    Why oh why have apple moved this... now when I want to quickly edit the tag of a file I'm playing or pausing... the most infuriating thing ever, almost as bad as when they decided to leave off "group compilations" on iPod classics.
    Is there anyway to remove the play/pause option on right click menu's?!?

    Agreed. It even is actually out of context in the right click menu, and here's why.
    Example, I am playing Song A and then pause it and I want to deal with Song Z way at the bottom. If I right click Song Z and click Play, it continues playing Song A so the right click tool becomes VERY misleading.
    Think about it. EVERY option in the Right-Click/Alt-Click box relates to the selected song(s) EXCEPT for the Play/Pause option. Sounds like a case of "which one of these is not like the other" you know? Therefore with the several other options of Space Bar, the Play/Pause button in the Upper Left hand corner, and the Control->PLAY, I'd say REMOVE it entirely from the right click menu since it doesn't belong.

  • How do I get the old right click menu back after updating to 7.0.1?

    I want the old commands back in the right click menu rather than the new ones.

    There was a bit of a change between Firefox 3.6 and earlier versions, and Firefox 4.0 and later versions, as far as context menus, but I don't see any difference is the web pages I have viewed as far as any missing items - using a default Profile in Firefox 3.6.23, 4.0.1, 5.0.1, 6.0.2 and 7.0.1 versions. The information provided is too ambiguous to provide an exact answer.
    Try the Firefox SafeMode to see how it works there. <br />
    ''A troubleshooting mode, which disables most Add-ons.'' <br />
    ''(If you're not using it, switch to the Default Theme.)''
    * You can open the Firefox 4/5/6/7 SafeMode by holding the '''Shft''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item, click on '''Restart with Add-ons Disabled...''' while Firefox is running. <br />
    ''Don't select anything right now, just use "Continue in SafeMode."''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shft key) to open it again.''
    If it is good in the Firefox SafeMode, your problem is probably caused by an extension, and you need to figure out which one. <br />
    http://support.mozilla.com/en-US/kb/troubleshooting+extensions+and+themes

  • How did "inspect element" get on my right click menu?

    I did install several addons when this appeared. Anyone know from where this right click menu item came? My search suggested "firebug" - whatever that is. This is not on my XP but it is on my Vista and both have the same addons.
    Thanks

    "Inspect Element" is a new item that is added in Firefox 10.<br />
    Previous Firefox version do not have the build-in inspector.
    *http://www.mozilla.org/en-US/firefox/10.0/releasenotes/
    <blockquote>Inspect tool with content highlighting, includes new CSS Style Inspector</blockquote>
    You can hide that context menu entry by setting the <b>devtools.inspector.enabled</b> pref to false on the <b>about:config</b> page.
    *http://kb.mozillazine.org/about:config

Maybe you are looking for

  • PMS: Creation of new filter values

    Dear Reader, I am working on a PMS implementation where one particular appraisal template has multiple appraisers. The only way I can attach and identify between multiple appraisers is by creating new filters in table T77HAP_FLT_SEL. I plan to then u

  • Macbook to HD

    I am probably getting a new HDTV,(so HDMI input?) and I would like to hook my Macbook up to it for video mirroring. What cable(s) do I need?

  • Function Module for incoming payments

    Hi All, I'm currently working on integrating the IVR system with SAP ECC 6.0 - IS-U module. I would like to know if there is any function module or BAPI which I can use to receive the payment information and the credit card information to update the

  • How can I cancel a free trial subscription?

    I signed up for a free trial of Premiere Pro and I want to cancel the free trail so it does not convert to paid. How do I do that?

  • Relationship between company code n plant

    <i>Hi, which table stores company code n plant info. I wanna select all the plants belongs to a company code. Thanks. Senthil</i>