Exago Logo
Search
Generic filters
Exact matches only

Global Event: OnOkParametersDialog

The OnOkParametersDialog Event occurs when a user clicks on the Ok button of the Parameter Prompt Window. The window will only displays if the report has a non-hidden parameter with a prompt text. This Event could be used to see what values the user is setting for each prompting parameter.

Signature

For custom code the args array is structured as follows:

args[] is empty.

For .NET Assmblies the method signature is as follows:

string EventHandlerName(SessionInfo sessionInfo)

Expected Return

The OnOkParametersDialog Event expects a string to be returned. Based on the returned string there are three possible results.

  • Null / Whitespace — If the string is null or whitespace then the report execution will continue as expected.
  • LanguageId — If the string matches the id of any element in the language files then the string of that language element will be displayed as a message to the user. For more information see Multi-Language Support.
  • Other — If the string does not match the id of any element in the language files then the returned value will be displayed as a message to the user.

Notes

This Event cannot override the value of Parameters for the report execution.

The Parameters of the report being executed can be accessed through the sessionInfo object by using sessionInfo.Report.

Was this article helpful?
0 out of 5 stars
5 Stars 0%
4 Stars 0%
3 Stars 0%
2 Stars 0%
1 Stars 0%
How can we improve this article?
Please submit the reason for your vote so that we can improve the article.
Table of Contents