0

I'm using ExtJS for my project and can see that there is a way to embed "actioncolumns" inside of Grid columns. However, my "action" isn't just a single click, it actually needs to show a flyout menu (similar to the Menu control). Is there a direct way to do this in Ext? Or do I have to implement all this functionality myself?

Anton Babushkin
  • 406
  • 2
  • 12
  • possible duplicate of [How to show a menu in a grid - ExtJS 5?](http://stackoverflow.com/questions/27945026/how-to-show-a-menu-in-a-grid-extjs-5) – Lorenz Meyer Jul 15 '15 at 14:14

1 Answers1

1

There is no direct way. You need to create a menu and show it manually in the event handler for action button. You can also show menu as a context menu for the grid (right click).

sha
  • 17,824
  • 5
  • 63
  • 98