We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
As we know, the methods(ShowRunButton and HideRunButton) control the visibility of 'Run Report' Button. But any method is not working.
For fixing the problem, add some codes in the source 'RdlViewer.cs'.
(Line 2145) public void HideRunButton() { _ShowParameters = false; //<- Add this Line _RunButton.Visible = false; }
(Line 2150) public void ShowRunButton() { _ShowParameters = true; //<- Add this Line _RunButton.Visible = true; }
I hope that this issue is resolved ASAP!
The text was updated successfully, but these errors were encountered:
Please send a pull request with the fix and I'll merge it.
Sorry, something went wrong.
No branches or pull requests
As we know, the methods(ShowRunButton and HideRunButton) control the visibility of 'Run Report' Button.
But any method is not working.
For fixing the problem, add some codes in the source 'RdlViewer.cs'.
(Line 2145)
public void HideRunButton()
{
_ShowParameters = false; //<- Add this Line
_RunButton.Visible = false;
}
(Line 2150)
public void ShowRunButton()
{
_ShowParameters = true; //<- Add this Line
_RunButton.Visible = true;
}
I hope that this issue is resolved ASAP!
The text was updated successfully, but these errors were encountered: