- 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
‎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
‎04-28-2017 11:49 AM
Hello Gurpreet,
I tried but no luck. Do we need to pass some additional parameter in URL to hide breadcrumbs on data table widget?
I'm invoking data table widget from a page with below HTML in Body template section. When user click on Delegates link it does opens a list view with correct filter but I would need to hide the filter condition. Is there any workaround for this?
<a ng-href="?table=sys_user_delegate&id=list&filter=user={{data.sysUserID}}" >Delegates</a>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-29-2017 01:38 AM
Hi Bhupinder,
Clone the existing "data table from url definition" widget and add to new page.
Configure instance options for this and add below in additional options,json format
Give the new page url in your link.
<a ng-href="?table=sys_user_delegate&id=new_page_id&filter=user={{data.sysUserID}}" >Delegates</a>
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎02-08-2017 07:46 PM