Navigation Bar

Include the library and execute global changes on the navigation bar of User's Area in AppGini applications.

Get variable for navbar-changes

var navbar = AppGiniHelper.common.getNavbar();

// or
// var navbar = AppGiniHelper.common.navbar;

This code can be added to hooks/header-extras.php:

<!-- file: /hooks/header-extras.php -->
<script>
  var navbar = AppGiniHelper.common.getNavbar();
  // ...
</script>

Add items to navbar

These functions allow you to add custom links, texts and even custom dropdown menus (and menuitems) to your top navigation bar

Read more ...

Remove buttons (5.9x)

In latest AppGini there are additional features like CSV-Import and keyboard shortcuts. For those there are new buttons in the navbar, which somehow break the inline-buttons user interface. You can get rid of them with a couple of useful new functions

Read more ...

Remove mini-gap in navbar

Due to a min-width CSS styling of default AppGini navbar, there is a (minimal) gap between last navbar-button and the right page margin. You can remove this using a single command

Read more ...

Change Navbar-Title

Change the title of the navigation bar in User's Area

Read more ...

Change Navbar-Icon

Change the icon of the navigation bar in User's Area of AppGini applications

Read more ...

Remove Navbar-Icon

Remove the default icon from navigation bar

Read more ...

Set Navbar-Picture / setImage function

Replace the default navbar icon by a custom image/picture

Read more ...

Invert Navbar-Color

Inverts the colors of navbar according to the selected theme

Read more ...

Fix Navbar-Buttons

Convert default buttons in navigation bar into in-line links

Read more ...

Do you like it?