You are not logged in.
Dear users of this forum,
we are pleased to inform you that we will be updating the software behind this forum in the near future.
Existing posts, users and categories will remain untouched.
Important:
We will keep you informed in the pinned thread.
Kind regards,
Your ReportServer Team
Liebe Nutzer dieses Forums,
wir freuen uns, euch mitteilen zu können, dass wir in naher Zukunft die Software hinter diesem Forum aktualisieren werden.
Existierende Beiträge, Nutzer und Kategorien bleiben weiterhin bestehen!
Wichtig:
Wir halten euch im angepinnten Beitrag auf dem Laufenden!
Mit vielen Grüßen
Euer ReportServer Team
Hi everybody,
I hope you can help me, I'm working with GRID Report and I want to remove from the report Menu the Menu options "Add", "Remove" and "Duplicate", I just want my report to be able to update current data from Database Table.
I don´t want user to be able to INSERT or DELETE rows on my referenced table.
So, Is there any configuration that can help me to prevent users to insert or delete new rows in a GRID Report?
Offline
Hi RSnewuser,
this is currently not possible, but I raised ticket RS-4425 for this. I will update here when I have more information.
Regards,
Eduardo
Offline
Hi RSnewuser,
this will be available in the next ReportServer version (3.4.0):
You can turn off adding/duplicating/removing records per grid report. Default is true (allowed). This can be done via the following settings:
def adapter = definition.getAdapter()
adapter.setCanAddRecords(false)
adapter.setCanDuplicateRecords(false)
adapter.setCanRemoveRecords(false)analogously to the setSortable() and setFilterable() settings.
Regards,
Eduardo
Offline