Nav Bar on form issue - forms

I am having an issue with a custom nav bar item in a form that links to a simple html web resource, for some reason the nav item is only visible to system admins, when I try to view the form with a regular user the nav item is not visible. Is there a privilege somewhere that I am missing? The nav item is in the common section of the form and it links to a web resource in CRM, I already tested and the resource is accessible to the users that cannot see the Nav item.

Download the sitemapeditor from codeplex. You probably need to give certain user rigths to do this. Using the sitemapeditor makes it that you can see how to do this by checking other nodes in the tree. Succes

Related

flutter: best way to implement inner navigation with bottom nav bar

I'm developing a flutter application and I'm now struggling to understand what is the best way to implement a complex bottom bar navigation.
Here are my requirements:
each button on the nav bar should lead to a different section
each section should be able to have multiple screens inside of it
user can navigate from any page of a section to any page in another section and back
each section should show the last visited page if we come back to it
for example, let's say we have two sections, each made of two pages: SectionOneA, SectionOneB, SectionTwoA, SectionTwoB.
A few use cases:
user navigates from SectionOneB to SectionTwoB by pressing a button inside SectionOneB, when user presses back (on android) from SectionTwoB, we should navigate back to SectionOneB
user navigates to SectionTwoA by the nav bar, then navigates to SectionTwoB via a button in SectionTwoA, then navigates to SectionOneA via the nav bar and then press the SectionTwo icon in the nav bar again. we should show SectionTwoB. if back is pressed we should navigate to SectionTwoA.
in both these examples, when moving from one section to another, the correct nav bar item should be highlighted.
I'm new to flutter so I'm learning as I go. For now, what I've done is using nav bar with PageViewer to switch from section to section, then each section uses a PageViewer to handle switching from page to page. This worked well until I had to implement the first usecase above, at this point it seems to me that it would be quite challenging to implment a proper navigation stack as demanded by the usecase and I feel it would be better to rethink the whole thing, only I've no idea what is the best way to approach this.
A temporary solution would be to also include SectionTwoB in the PageViewer of section one, but that would not allow me to highlight the proper nav bar item.
Any lead on how to approach this? All the examples I find seems too simple and/or I'm failing at understanding how to connect the pieces together. I'm using flutter_bloc as a state management library.

Drupal 8 - browser tab title translations for views

I am creating a multilingual site in Drupal 8. The browser tab title for nodes translate, but in a view the titles are all in english.
Currently, the goal is to create one view page and use a URL alias to direct to the other translation views. I have the filter set to content revisions for languages using the "Interface text language selected for page". On these view pages, everything but the title translates.
Is there a way to force the browser tab titles to translate without having to create additional view pages for each language?
Thank you in advance for any advice
If by "browser tab title" you mean Views' title, enable "Configuration Translation" core module, and then click on "Translate" link next to your View ("Operations" column, /admin/structure/views).
If you mean titles of nodes' which you output in a View, then check out settings of a default prebuild "FrontPage" View, because it works just great with content translations, maybe you've just missed some important settings which you can spot there.

Custom Concrete5 navigation bar

I'm having a hard time finding resources on how to make a custom navigation side bar for my C5 website. I just want this navigation sidebar to display selected parts of the site. Thanks for the help!!
If you only want to display specific pages you select manually, the easiest (and free) way to do this is with the manual nav add-on:
http://www.concrete5.org/marketplace/addons/manual-nav/
This is a quick and simple way to do it if you need to have a non-complicated menu (i.e. not a nested ul or a dropdown). Plus your clients can update it themselves (if they know their way around a web admin)

SugarCRM CE 6.5.11 Detail Views Broken

We are working with SugarCRM CE 6.5.11. We created come custom fields within the Contacts and Accounts modules and imported some data. Now we can't access the Detail View of any of those modules.
We can create, for example, a new Lead and after creation the Detail View appears as usual.
However, once we go back to the Leads List View and click on a new Lead to see the detail view, we get nothing. We can only see the top menu and the SugarCRM footer. In Internet Explorer, it shows "null."
This happens for any Detail View within Accounts, Leads and Contacts. We can create new ones and see the list, but there's no way to access the detail view. We also tried doing a quick fix from the repair menu with no luck.
Any ideas what can be broken?

Manually setting a breadcrumb in Zend Framework

I have all the menu items in a Zend Navigation Container.
I'm displaying the breadcrumb via Zend's breadcrumb helper.
When I visit one of the menu items, it's displaying the breadcrumb correctly. However, if I have a page which doesn't occur in the Navigation Container, it doesn't show a breadcrumb, which makes sense. But I do want to show a breadcrumb on some of those pages.
I have a controller named "cart" and an action named "checkout". When I visit the page /cart/checkout, I do want to show a breadcrumb. But what's the best way of doing this?
Can I manually add breadcrumblinks in de controller or do I have to add the page to the Navigation Container?
There are three possibilities:
add the required paged statically to your navigation container (through code or a configuration file)
add the required pages dynamically to your navigation container; either in the action method itself, in the controller-init()-method or via a front-controller-plugin
create a separate navigation container with just the pages required by the breadcrumb and pass this container to the breadcrumb-helper (bypassing the automatic container-recovery using the registry).