- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2017 05:39 PM
Hi All,
I am using the data table widget and I need to make certain that the user is unable to traverse other records of the table by changing the filter. I know that the filter could be hidden by css but it could be easily changed by the user. Is there any other way to disable the change filter?
Thanks for any help.
Solved! Go to Solution.
- Labels:
-
Scripting and Coding
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2017 07:45 PM
Add/Change below in server code and it should work fine
options.show_breadcrumbs=false;
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎11-16-2017 07:36 AM
Data Table with URL Filter widget,
Go to server script
Change
show_breadcrumbs: false
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-28-2018 02:00 AM
Since the widget "Data table from Instance Definition" is OOTB, if you want to modify the server code to have
options.show_breadcrumbs=false;
it would require to clone the widget and use a custom one.
In order to not clone the OOTB widget, an other approach is to play with the CSS of the widget instance and add this code for example:
.filter-breadcrumbs {
display: none;
}
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎07-29-2019 09:09 AM
Merci papy !
Tu m'as sauvé la vie 😄
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎09-24-2020 12:57 PM
This works for me! Thanks so much!
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎12-28-2020 08:01 AM
works fine with CSS