- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2022 02:38 AM
For ex. Suppose i have this breadcrumb on the data table instance definition & i just want this breadcrumb to be fixed so that users cant click on all & remove the filter & see the records without this filter.
How can i do this? Pls help
Solved! Go to Solution.
- Labels:
-
Service Portal
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
02-21-2022 03:53 AM
It's not possible to do it from widget instance, try to do it with CSS, I've checked this and worked for me. Add this CSS into your cloned widget:
.v339a5c41d7201200b0b044580e61030d .breadcrumbs span:nth-child(2) a ,
.v339a5c41d7201200b0b044580e61030d .breadcrumbs span:nth-child(3) a,
.v339a5c41d7201200b0b044580e61030d .breadcrumbs span:nth-child(4) > a.sp-breadcrumb-link.sp-breadcrumb-remove-condition.ng-scope{
pointer-events:none !important;
}
I've taken all breadcumbs with Jquery selector and made it readOnly with CSS.
If it was helpful, please give positive feedback.
Thanks,
☆ Community Rising Star 22, 23 & 24 ☆
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-02-2025 05:12 AM
Hi @Adrian Ubeda
How have you taken all the breadcrumbs?
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-04-2025 03:53 AM
Hello Pvn1,
With the browser inspector and using CSS classes.
☆ Community Rising Star 22, 23 & 24 ☆