secondaryheader-backbutton
v18.1.6
Published
This library was generated with [Angular CLI](https://github.com/angular/angular-cli) version 18.1.1.
Downloads
39
Readme
Secondarynavigation
This library was generated with Angular CLI version 18.1.1.
Getting started
Step 1: Install
Run npm install secondaryheader-backbutton
to install the module in your local Angular Application.Recommended npm install secondaryheader-backbutton --force
When attempting to install various third-party dependencies listed in your local package.json, some of them may not be compatible with the latest Angular version, Use --force inspite of normal npm install.
Step 2: Import the CloSecondaryNavigationModule
Usage
HTML
<clo-tab-navigation-back
id="nav"
[labelName]="title"
class="fixed-secondary-header"
(backButtonClickEmit)="backButtonClickEvent($event)"
>
<clo-navigation-tab-back>
<ng-template cloNavigationTabContentBack> </ng-template>
</clo-navigation-tab-back>
</clo-tab-navigation-back>
TS
title:string = "Back";
backButtonClickEvent(event: any) {
Handle the click event here
}