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

Gurpreet07
Mega Sage

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


options.show_breadcrumbs=false;


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>


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



find_real_file.png


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>


Gurpreet07
Mega Sage

find_real_file.png