kvirk
kvirk

Reputation: 137

SlickGrid RightClick Event

I am using SlickGrid in my web application, and try to decide a priori, if I will show the contextmenu or not, depending on the row data I clicked on with the right mouse button. Unfortunately, I see no chance to get a right-click event, only the usual onClick event, fired after left-click. Any ideas?

Upvotes: 1

Views: 1704

Answers (1)

Aleksei Golubev
Aleksei Golubev

Reputation: 352

Maybe this example will help you to handle right-click event: https://github.com/mleibman/SlickGrid/blob/gh-pages/examples/example7-events.html

The method name is onContextMenu.

Upvotes: 1

Related Questions