Referencing Value in Custom Context Menus

Hello,

I’ve created a custom context menu on my data view. So far my event fires whenever I click the menu item, but since I am using this for a grid, it uses the currently selected row’s value rather than the row that I right clicked on. Is there a way to reference the value that I actually clicked on for my context menu event?

1 Like

I’ve not tried, but AI says

${contextMenuRow.PartNum}

is right clicked row while

${selectedRow.PartNum}

is left clicked or checked row ( for multi-select)

I believe these are binding expressions so they should work in EPBinding properties of components and events.