How to create context menus which appear on right clicking in oracle apex report?Oracle APEX: popup menuOracle Apex: Is it possible to create buttons which have similar functionality to the action menu within interactive reports?Oracle Apex 5.0: Can you use the action menu buttons on an Interactive report when the action bar is set to not show?Oracle Apex 5: retain format of Interactive Report on downloadTutorial to create custom reports on Oracle APEX 5LOV on Interactive Report Oracle Apex 5Deletion doesn't work for interactive report in Oracle ApexOracle APEX use button to change report source sqlOracle Apex 5 Calendar Drop-down disappears behind column headers of the reporthow to select record id in oracle apex interactive reportDate Picker Parameter for Oracle Apex Interactive Report

Second (easy access) account in case my bank screws up

How can I get an unreasonable manager to approve time off?

How to construct an hbox with negative height?

Arriving at the same result with the opposite hypotheses

Why is one of Madera Municipal's runways labelled with only "R" on both sides?

How does an ordinary object become radioactive?

bash script: "*.jpg" expansion not working as expected inside $(...), for picking a random file

Preventing employees from either switching to competitors or opening their own business

Overlapping String-Blocks

Character descriptions

What can I, as a user, do about offensive reviews in App Store?

How Often Do Health Insurance Providers Drop Coverage?

At what point in time did Dumbledore ask Snape for this favor?

How to return a security deposit to a tenant

Where Mongol herds graze

Using "subway" as name for London Underground?

Mobile App Appraisal

Why did the Tesseract "burn" a hole through Red Skull's plane but not Nick Fury's desk?

Were Alexander the Great and Hephaestion lovers?

1980s live-action movie where individually-coloured nations on clouds fight

What is wrong with this proof that symmetric matrices commute?

What is the highest possible temporary AC at level 1, without any help from others?

What language is software running on the ISS written in?

How can I tell the difference between unmarked sugar and stevia?



How to create context menus which appear on right clicking in oracle apex report?


Oracle APEX: popup menuOracle Apex: Is it possible to create buttons which have similar functionality to the action menu within interactive reports?Oracle Apex 5.0: Can you use the action menu buttons on an Interactive report when the action bar is set to not show?Oracle Apex 5: retain format of Interactive Report on downloadTutorial to create custom reports on Oracle APEX 5LOV on Interactive Report Oracle Apex 5Deletion doesn't work for interactive report in Oracle ApexOracle APEX use button to change report source sqlOracle Apex 5 Calendar Drop-down disappears behind column headers of the reporthow to select record id in oracle apex interactive reportDate Picker Parameter for Oracle Apex Interactive Report






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








1















I need to display a context menu when a user right clicks on a report
and the user can perform an action on the rows selected. How to achieve this?



I can see there is already an action button on top of an interactive report. Can we customize that?










share|improve this question






















  • I don't know how to achieve this. Though, what kind of an "action" would you want to do?

    – Littlefoot
    Mar 24 at 18:45











  • It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

    – PTK
    Mar 24 at 18:48











  • Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

    – Littlefoot
    Mar 24 at 18:51











  • Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

    – Bob Jarvis
    Mar 24 at 19:24


















1















I need to display a context menu when a user right clicks on a report
and the user can perform an action on the rows selected. How to achieve this?



I can see there is already an action button on top of an interactive report. Can we customize that?










share|improve this question






















  • I don't know how to achieve this. Though, what kind of an "action" would you want to do?

    – Littlefoot
    Mar 24 at 18:45











  • It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

    – PTK
    Mar 24 at 18:48











  • Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

    – Littlefoot
    Mar 24 at 18:51











  • Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

    – Bob Jarvis
    Mar 24 at 19:24














1












1








1








I need to display a context menu when a user right clicks on a report
and the user can perform an action on the rows selected. How to achieve this?



I can see there is already an action button on top of an interactive report. Can we customize that?










share|improve this question














I need to display a context menu when a user right clicks on a report
and the user can perform an action on the rows selected. How to achieve this?



I can see there is already an action button on top of an interactive report. Can we customize that?







oracle oracle-apex oracle-apex-5






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 24 at 17:08









PTKPTK

547




547












  • I don't know how to achieve this. Though, what kind of an "action" would you want to do?

    – Littlefoot
    Mar 24 at 18:45











  • It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

    – PTK
    Mar 24 at 18:48











  • Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

    – Littlefoot
    Mar 24 at 18:51











  • Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

    – Bob Jarvis
    Mar 24 at 19:24


















  • I don't know how to achieve this. Though, what kind of an "action" would you want to do?

    – Littlefoot
    Mar 24 at 18:45











  • It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

    – PTK
    Mar 24 at 18:48











  • Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

    – Littlefoot
    Mar 24 at 18:51











  • Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

    – Bob Jarvis
    Mar 24 at 19:24

















I don't know how to achieve this. Though, what kind of an "action" would you want to do?

– Littlefoot
Mar 24 at 18:45





I don't know how to achieve this. Though, what kind of an "action" would you want to do?

– Littlefoot
Mar 24 at 18:45













It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

– PTK
Mar 24 at 18:48





It would be business logic associated with rows selected. For example update salaries of the selected employees. The update can be done through a database procedure which gets called when user clicks on the update salary option in the context menu.

– PTK
Mar 24 at 18:48













Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

– Littlefoot
Mar 24 at 18:51





Well, if nothing else helps, you could create a Select List item whose values would be those "actions". You'd then call the appropriate (stored) procedure either on page submit or via dynamic action.

– Littlefoot
Mar 24 at 18:51













Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

– Bob Jarvis
Mar 24 at 19:24






Possible dup of stackoverflow.com/questions/4992670/oracle-apex-popup-menu but as I'm not familiar with Apex I'll allow those with more experience to determine if it is, in fact, a dup.

– Bob Jarvis
Mar 24 at 19:24













2 Answers
2






active

oldest

votes


















2














There's no built in way to do this. I see a few options:



  1. You could hack together your own actions. You would add a Dynamic Event on mousedown on your report, then some Javascript to handle the action.

  2. If it doesn't have to be a right click option, you can add a custom menu to a report. Here's one way of doing it. http://hardlikesoftware.com/weblog/2015/07/13/apex-5-0-custom-menus/

  3. Also, if using the Interactive Grid is an option, that menu can also be customized. See: http://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/





share|improve this answer






























    0














    If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.



    https://www.foex.at/home/



    I'm just a user, not a shill or employee...






    share|improve this answer























      Your Answer






      StackExchange.ifUsing("editor", function ()
      StackExchange.using("externalEditor", function ()
      StackExchange.using("snippets", function ()
      StackExchange.snippets.init();
      );
      );
      , "code-snippets");

      StackExchange.ready(function()
      var channelOptions =
      tags: "".split(" "),
      id: "1"
      ;
      initTagRenderer("".split(" "), "".split(" "), channelOptions);

      StackExchange.using("externalEditor", function()
      // Have to fire editor after snippets, if snippets enabled
      if (StackExchange.settings.snippets.snippetsEnabled)
      StackExchange.using("snippets", function()
      createEditor();
      );

      else
      createEditor();

      );

      function createEditor()
      StackExchange.prepareEditor(
      heartbeatType: 'answer',
      autoActivateHeartbeat: false,
      convertImagesToLinks: true,
      noModals: true,
      showLowRepImageUploadWarning: true,
      reputationToPostImages: 10,
      bindNavPrevention: true,
      postfix: "",
      imageUploader:
      brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
      contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
      allowUrls: true
      ,
      onDemand: true,
      discardSelector: ".discard-answer"
      ,immediatelyShowMarkdownHelp:true
      );



      );













      draft saved

      draft discarded


















      StackExchange.ready(
      function ()
      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326334%2fhow-to-create-context-menus-which-appear-on-right-clicking-in-oracle-apex-report%23new-answer', 'question_page');

      );

      Post as a guest















      Required, but never shown

























      2 Answers
      2






      active

      oldest

      votes








      2 Answers
      2






      active

      oldest

      votes









      active

      oldest

      votes






      active

      oldest

      votes









      2














      There's no built in way to do this. I see a few options:



      1. You could hack together your own actions. You would add a Dynamic Event on mousedown on your report, then some Javascript to handle the action.

      2. If it doesn't have to be a right click option, you can add a custom menu to a report. Here's one way of doing it. http://hardlikesoftware.com/weblog/2015/07/13/apex-5-0-custom-menus/

      3. Also, if using the Interactive Grid is an option, that menu can also be customized. See: http://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/





      share|improve this answer



























        2














        There's no built in way to do this. I see a few options:



        1. You could hack together your own actions. You would add a Dynamic Event on mousedown on your report, then some Javascript to handle the action.

        2. If it doesn't have to be a right click option, you can add a custom menu to a report. Here's one way of doing it. http://hardlikesoftware.com/weblog/2015/07/13/apex-5-0-custom-menus/

        3. Also, if using the Interactive Grid is an option, that menu can also be customized. See: http://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/





        share|improve this answer

























          2












          2








          2







          There's no built in way to do this. I see a few options:



          1. You could hack together your own actions. You would add a Dynamic Event on mousedown on your report, then some Javascript to handle the action.

          2. If it doesn't have to be a right click option, you can add a custom menu to a report. Here's one way of doing it. http://hardlikesoftware.com/weblog/2015/07/13/apex-5-0-custom-menus/

          3. Also, if using the Interactive Grid is an option, that menu can also be customized. See: http://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/





          share|improve this answer













          There's no built in way to do this. I see a few options:



          1. You could hack together your own actions. You would add a Dynamic Event on mousedown on your report, then some Javascript to handle the action.

          2. If it doesn't have to be a right click option, you can add a custom menu to a report. Here's one way of doing it. http://hardlikesoftware.com/weblog/2015/07/13/apex-5-0-custom-menus/

          3. Also, if using the Interactive Grid is an option, that menu can also be customized. See: http://hardlikesoftware.com/weblog/2017/01/24/how-to-hack-apex-interactive-grid-part-2/






          share|improve this answer












          share|improve this answer



          share|improve this answer










          answered Mar 24 at 19:55









          eaolsoneaolson

          9,06863247




          9,06863247























              0














              If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.



              https://www.foex.at/home/



              I'm just a user, not a shill or employee...






              share|improve this answer



























                0














                If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.



                https://www.foex.at/home/



                I'm just a user, not a shill or employee...






                share|improve this answer

























                  0












                  0








                  0







                  If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.



                  https://www.foex.at/home/



                  I'm just a user, not a shill or employee...






                  share|improve this answer













                  If you're willing to use a commercial Apex add-on product, I have used the FOEX add-ons with great success. However, it's not cheap and it would require changing your report to use their report-style (which we like). Then you can add a context menu that's maintained via the Shared Components -> Lists.



                  https://www.foex.at/home/



                  I'm just a user, not a shill or employee...







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Mar 27 at 15:23









                  StewS2StewS2

                  230210




                  230210



























                      draft saved

                      draft discarded
















































                      Thanks for contributing an answer to Stack Overflow!


                      • Please be sure to answer the question. Provide details and share your research!

                      But avoid


                      • Asking for help, clarification, or responding to other answers.

                      • Making statements based on opinion; back them up with references or personal experience.

                      To learn more, see our tips on writing great answers.




                      draft saved


                      draft discarded














                      StackExchange.ready(
                      function ()
                      StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55326334%2fhow-to-create-context-menus-which-appear-on-right-clicking-in-oracle-apex-report%23new-answer', 'question_page');

                      );

                      Post as a guest















                      Required, but never shown





















































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown

































                      Required, but never shown














                      Required, but never shown












                      Required, but never shown







                      Required, but never shown







                      Popular posts from this blog

                      Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

                      Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

                      Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript