You are not logged in.
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