Category: | Bug report |
Priority: | Urgent |
Status: | New |
Project: | Severity: | Major |
Resolution: | Open |
|
Component: | Reproducibility: | Always |
Assigned to: |
PDF reports, which are created by the scheduler in the repository tree, can not be deleted. When the PDF report list item is selected, all the buttons in the toolbar (run, edit, open, copy, cut, paste, delete) remain disabled. The context menu (right mouse button) is not displayed.
I am logged on as jasperadmin (ROLE_ADMINISTRATOR).
Same issue with my own custom data source.
For debugging purposes I changed the resource type via PGadmin to ReportUnit and the buttons are enabled.
v5.6
4 Comments:
Until they fix it you can use DELETE on your keyboard.
There is a bug in repository.search.main.js (line 1703 version 6.0.1):
getInitConfiguration: function () {
return getInitOptions().configuration;
}
should be
getInitConfiguration: function () {
return this.getInitOptions().configuration;
}