Question

I am using a ContextMenu for an AdvancedDataGrid in my application. I could implement the normal context menu for the grid. Now, I am planning to make the context menu dynamic.

For example, if I click on a particular cell, I need to see only the items related to that cell in the Context Menu. Is there any way we can do that?

Was it helpful?

Solution 2

I found the solution for this. Quite simple:

http://www.pubbs.net/flex/200905/73331/

OTHER TIPS

ContextMenu class contains a customItems property which is (quoting from Adobe livedocs):

An array of ContextMenuItem objects. Each object in the array represents a context menu item that you have defined. Use this property to add, remove, or modify these custom menu items.

To add new menu items, you create a ContextMenuItem object and then add it to the customItems array (for example, by using Array.push()). For more information about creating menu items, see the ContextMenuItem class entry.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top