Page 1 of 1

how can i disable breadcrumbs only from one page?

Posted: Wed Jan 11, 2017 7:08 pm
by bass115

Hi all,

First of all i would like to thank Mr. Mobhar for his great support.

I have simple question: how can i disable the breadcrumbs on the top of specific page (only one page not all pages)?

should i write css display: none or what?


Re: how can i disable breadcrumbs only from one page?

Posted: Wed Jan 11, 2017 8:27 pm
by mobhar

Simply put the following jQuery code in "Startup Script" under "Client Scripts" -> "Table-Specific" -> "List Page":

$(document).ready(function() {
$(".ewBreadcrumbs").hide();
});


Re: how can i disable breadcrumbs only from one page?

Posted: Wed Jan 11, 2017 8:40 pm
by bass115

excellent as usual :)

it solved my problem.