Appbar {{ 'SAMPLE' | translate }}

{{:: 'CODE_TO_DISPLAY' | translate}}

HTML: <pip-appbar></pip-appbar>

{{ 'DISPLAY_AND_HIDE_NAV_ICONS' | translate }}

{{ 'SHOW_MENU' | translate }} {{ 'SHOW_BACK' | translate }} {{ 'HIDE_NAV_ICON' | translate }}

{{:: 'CODE' | translate}}

pipAppBar.showMenuNavIcon() pipAppBar.showBackNavIcon() pipAppBar.hideNavIcon()

{{ 'DISPLAY_AND_HIDE_TITLES' | translate }}

{{ 'SHOW_LOGO' | translate }} {{ 'SHOW_TEXT' | translate }} {{ 'SHOW_BREADCRUMB' | translate }}

{{:: 'CODE' | translate}}

pipAppBar.showTitleLogo('piplife_logo.svg') pipAppBar.showTitleText($scope.title) pipAppBar.showTitleBreadcrumb([ { title: 'Header' }, { title: 'SubHeader' }, { title: $scope.title } ])

{{ 'DISPLAY_AND_HIDE_SEARCH' | translate }}

{{ 'SHOW_SEARCH' | translate }} {{ 'HIDE_SEARCH' | translate }} {{ 'UPDATE_SEARCH' | translate }}

{{:: 'CODE' | translate}}

pipAppBar.showSearch() pipAppBar.hideSearch() pipAppBar.updateSearchCriteria($scope.searchCriteria)

{{ 'DISPLAY_AND_HIDE_ACTIONS_AND_LANGUAGES' | translate }}

{{ 'SHOW_ACTIONS' | translate }} {{ 'HIDE_ACTIONS' | translate }} {{ 'SHOW_LANGUAGES' | translate }}

{{:: 'CODE' | translate}}

pipAppBar.pipAppBar.showLocalActions [ { name: 'sample.send', tooltip: 'Send Message', icon: 'icons:send', menu: true, subActions: [{ name: 'sample.sendSomeone', title: 'Send someone' }, { name: 'sample.sendToAll', title: 'Send to All' }] }, { name: 'sample.discard', tooltip: 'Discard Message', icon: 'icons:trash', hideSmall: true }, { name: 'sample.discard2', tooltip: 'Discard2 Message', icon: 'icons:bug', showSmall: true } ], [ { name: 'sample.send', title: 'Send Message1' , close: true }, { name: 'sample.discard', title: 'Discard Message' }, { divider: true }, { name: 'configure', title: 'Configure...', href: 'http://www.google.com' } ] ); pipAppBar.hideLocalActions() pipAppBar.showLanguage(['en', 'ru'])

{{ 'DISPLAY_AND_HIDE_SHADOWS' | translate }}

{{ 'SHOW_SHADOW' | translate }} {{ 'SHOW_SMALL_SHADOW' | translate }} {{ 'HIDE_SHADOW' | translate }}

{{ 'CODE' | translate }}

{{:: 'CODE' | translate}}

pipAppBar.showShadow() pipAppBar.showShadowSm() pipAppBar.hideShadow()