Dashboard Query Table on Click does not exist

I am trying to find an event that can detect when a row is selected in a dashboard. I keep getting “The name “object_event” does not exist in the current context”

I guess my main question is what events are available to dashboards’ epiultragrids? I read on one of the posts that they are limited. I am trying to detect when a row is selected in a dashboard. The reason being, I have multiple tabs in the dashboard organizing data by filter, and I want to be able to select a row and change a hidden field not useful to see all the time, but used for filtering. We’re taking an excel document that people have used for years and moving it into epicor essentially. Should I cut my losses and change it from a dashboard to something else?

Thanks for the help!

AfterRowchange event will fire when you select a different row.

edit

Do this to a customization of the deployed version of the dashboard.

1 Like

I get that EpiUltraGrid does not contain a definition for AfterRowChange and no extension method could be found. That’s with both trying with Infragistics.Win.UltraWinGrid.AfterRowChangeEventHandler, and with System.EventHandler. I’m assuming it would be one of those.

I also tried the AfterSelectChange event as well as the Click event and both of those return ‘Script’ does not contain a definition for “eug_event”.

Thanks for the help. I would like to find a solution for future knowledge but I think I am going a different route now for simplicities sake.

Us the Form Event Wizard (Not the Event Wizard).

image

The “view/table” to select is the query source for that panel of the dashboard.

1 Like

There is also some support for connecting queries when you define a dashboard.
You can have one query publish the value of the selected row and other queries can subscribe and filter on the value.
It’s not very flexible but easy to use, anything beyond the above described would require a customization.

2 Likes

Awesome, I didn’t see it in there. Thanks a bunch.