Data table widget - hide filter

techies
Kilo Expert

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.

1 ACCEPTED SOLUTION

Gurpreet07
Mega Sage

Add/Change below in server code and it should work fine


options.show_breadcrumbs=false;


View solution in original post

12 REPLIES 12

salihyak__c___
Giga Contributor

Data Table with URL Filter widget,


Go to server script


Change


show_breadcrumbs: false


Ximizu
Mega Guru

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;
}

 

Ximizu

 

find_real_file.png

 

Merci papy !

Tu m'as sauvé la vie 😄

Linh N_
Tera Contributor

This works for me! Thanks so much!

works fine with CSS