We're reclaiming inactive PDIs to keep them available for active builders. Learn what's changing, who's affected, and how to protect your work. Read More

Data Table from URL Definition widget help

Jessica1307
Tera Expert

I don't want this search information show in this page, what should I do? find_real_file.png

1 ACCEPTED SOLUTION

Not applicable

Hi @Yang Wu ,

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

 

find_real_file.png

 

Mark my answer correct & Helpful, if Applicable.

Thanks,

Sandeep

View solution in original post

6 REPLIES 6

Never mind, It worked ,Thank you!

.btn{
display:none;
}

This helped me.

Thanks