Is it possible to move the breadcrumb list from it's location in the header bar? We would like to move it onto our form as we are using a custom header. I can't seem to find any nuBuilder functions or hash variables that contain this information.
Thanks!
Welcome to the nuBuilder Forums!
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Join our community by registering and logging in.
As a member, you'll get access to exclusive forums, resources, and content available only to registered users.
Move Breadcrumb Topic is solved
-
- nuBuilder Team
- Posts: 4565
- Joined: Sun Oct 14, 2018 6:43 pm
- Has thanked: 76 times
- Been thanked: 529 times
- Contact:
Re: Move Breadcrumb
Hi,
Example, to move the "nuBreadcrumbHolder" above the tabs:
Example, to move the "nuBreadcrumbHolder" above the tabs:
Code: Select all
function nuOnLoad() {
moveBreadcrumbHolder();
if (nuFormType() == 'edit') {
// Edit Form loaded
} else
if (nuFormType() == 'browse') {
// Browse Form loaded
}
}
function moveBreadcrumbHolder() {
let bc = $('#nuBreadcrumbHolder');
bc.clone()
.prop("id", "holder2")
.insertAfter('#nuActionHolder')
.css({height: 26})
bc.remove();
}