cockpit-config/setup/cockpit-setup-step3.component.ts
host | { |
selector | c8y-cockpit-setup-step3 |
templateUrl | ./cockpit-setup-step3.component.html |
Properties |
Methods |
constructor(stepper: C8yStepper, step: CdkStep, setup: SetupComponent, appState: AppStateService, alert: AlertService)
|
||||||||||||||||||
Parameters :
|
back |
back()
|
Returns :
void
|
Async next |
next()
|
Returns :
any
|
Public stepper |
Type : C8yStepper
|
config |
Type : CockpitConfig
|
Default value : DEFAULT_CONFIG
|
pending |
Default value : false
|
<form #stepForm="ngForm" name="form" class="d-contents">
<div class="container-fluid flex-no-shrink fit-w">
<div class="row separator-bottom">
<div class="col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3 p-t-24 p-l-16 p-r-16">
<h3 translate class="text-medium l-h-base">Home dashboard</h3>
<p class="lead text-normal" translate>
The landing page for this application. By default it is a customizable dashboard
displaying data for the overall tenant.
</p>
</div>
</div>
</div>
<div class="inner-scroll flex-grow">
<div class="container-fluid fit-w">
<div class="row">
<div class="col-md-8 col-md-offset-2 col-lg-6 col-lg-offset-3">
<c8y-home-dashboard-config [config]="config"></c8y-home-dashboard-config>
</div>
</div>
</div>
</div>
<c8y-cockpit-setup-stepper-buttons
[index]="stepper.selectedIndex"
(onNext)="next()"
(onBack)="back()"
>
</c8y-cockpit-setup-stepper-buttons>
</form>