GithubHelp home page GithubHelp logo

Comments (4)

bcleuing avatar bcleuing commented on August 16, 2024 1

I solved the problem by including the option "triggerOn".

var menu = [{
  name: 'delete',
  title: 'delete button',
  fun: function (data, event) {
    alert('delete button');
  },
}]
$('#trigger').contextMenu(menu, {
  mouseClick: 'right',
  triggerOn: 'click' // without this the menu will not show with right-click events
});

from contextmenu.js.

s-yadav avatar s-yadav commented on August 16, 2024 1

Also, you might want to set triggerOn: 'contextmenu' otherwise browser's default contextMenu will open on right click.

from contextmenu.js.

mota57 avatar mota57 commented on August 16, 2024

same here this is not working


 var menu = [{
                    name: 'create',
                    title: 'create button',
                    fun: function () {
                        alert('i am add button')
                    }
                }, {
                    name: 'update',
                    title: 'update button',
                    fun: function () {
                        alert('i am update button')
                    }
                }, {
                    name: 'delete',
                    title: 'delete button',
                    fun: function (ev) {
                        console.log(ev);
                        alert('i am delete button')
                    }
                }];
             
            //Calling context menu
             $(window.document).contextMenu(menu, window.document.body, {mouseClick:'left'});

from contextmenu.js.

mota57 avatar mota57 commented on August 16, 2024

thanks guys! in my humble opinion the default behavior should be right click.

from contextmenu.js.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.