Search code examples
azuremenu

Azure Portal - right click context menu not showing


According to this Microsoft guide: https://learn.microsoft.com/en-us/azure/app-service/webjobs-create when right-clicking a web job, there should be a context menu. However, no menu appears when I right-click on a web-job. I am not seeing any context menus when right-clicking on elements in the Azure portal. So two questions along the same line:

  1. How do I get the right click / context menu to appear when right clicking a web job in the azure portal?
  2. Are there other elements that should have a context menu within the Azure portal when right clicking them?

Solution

  • As per the document the optionS available on right click are Logs, Delete,Stop and Properties.

    Image from Document:

    enter image description here

    no menu appears when I right-click on a web-job.

    Thanks @TZHX for the comment.

    As mentioned by TZHX may be the UI must have changed.

    Even I didn't find option to right click on the Web Jobs.

    The Logs and Delete option is available in the created Job List itself.

    enter image description here

    I have referred this MSDoc to stop a WebJob.

    As an alternative to Stop a Web Job we can use Azure CLI command.

    az webapp webjob continuous stop --name AppInsightsWebJob --resource-group YourResourceGroup --webjob-name MyJob
    

    enter image description here

    enter image description here

    • Starting a WebJob option is available in Run.

    enter image description here