Ngx-Bootstrap - Descrizione comando
Il componente Tooltip ngx-bootstrap fornisce un componente Tooltip facile da usare e altamente configurabile.
TooltipDirective
selettore
[tooltip], [tooltipHtml]
Ingressi
adaptivePosition - booleano, imposta la disabilitazione della posizione adattiva.
container - string, un selettore che specifica l'elemento a cui aggiungere il tooltip.
containerClass - stringa, classe Css per il contenitore dei tooltip.
delay - numero, ritardo prima di mostrare la descrizione comando.
isDisabled - booleano, consente di disabilitare il tooltip.
isOpen - booleano, restituisce se il tooltip è attualmente visualizzato o meno.
placement- stringa, posizionamento di un suggerimento. Accetta: "top", "bottom", "left", "right".
tooltip- stringa | TemplateRef <any>, contenuto da visualizzare come tooltip.
tooltipAnimation - booleano, predefinito: vero.
tooltipAppendToBody - booleano.
tooltipClass - stringa.
tooltipContext - qualsiasi.
tooltipEnable - booleano.
tooltipFadeDuration - numero, predefinito: 150.
tooltipHtml- stringa | TemplateRef <qualsiasi>.
tooltipIsOpen - booleano.
tooltipPlacement - stringa
tooltipPopupDelay - numero
tooltipTrigger- stringa | corda[]
triggers- stringa, specifica gli eventi che dovrebbero attivarsi. Supporta un elenco di nomi di eventi separati da spazi.
Uscite
onHidden - Emette un evento quando il suggerimento è nascosto.
onShown - Emette un evento quando viene visualizzato il suggerimento.
tooltipChange - Sparato quando il contenuto della descrizione comando cambia.
tooltipStateChanged - Sparato quando lo stato del tooltip cambia.
Esempio
Dato che useremo Tooltip, dobbiamo aggiornare app.module.ts usato nel capitolo TimePicker di ngx-bootstrap da usareTooltipModule.
Aggiorna app.module.ts per utilizzare TooltipModule.
app.module.ts
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { BrowserAnimationsModule } from '@angular/platform-browser/animations';
import { AppComponent } from './app.component';
import { TestComponent } from './test/test.component';
import { AccordionModule } from 'ngx-bootstrap/accordion';
import { AlertModule,AlertConfig } from 'ngx-bootstrap/alert';
import { ButtonsModule } from 'ngx-bootstrap/buttons';
import { FormsModule } from '@angular/forms';
import { CarouselModule } from 'ngx-bootstrap/carousel';
import { CollapseModule } from 'ngx-bootstrap/collapse';
import { BsDatepickerModule, BsDatepickerConfig } from 'ngx-bootstrap/datepicker';
import { BsDropdownModule,BsDropdownConfig } from 'ngx-bootstrap/dropdown';
import { PaginationModule,PaginationConfig } from 'ngx-bootstrap/pagination';
import { PopoverModule, PopoverConfig } from 'ngx-bootstrap/popover';
import { ProgressbarModule,ProgressbarConfig } from 'ngx-bootstrap/progressbar';
import { RatingModule, RatingConfig } from 'ngx-bootstrap/rating';
import { SortableModule, DraggableItemService } from 'ngx-bootstrap/sortable';
import { TabsModule, TabsetConfig } from 'ngx-bootstrap/tabs';
import { TimepickerModule } from 'ngx-bootstrap/timepicker';
import { TooltipModule } from 'ngx-bootstrap/tooltip';
@NgModule({
declarations: [
AppComponent,
TestComponent
],
imports: [
BrowserAnimationsModule,
BrowserModule,
AccordionModule,
AlertModule,
ButtonsModule,
FormsModule,
CarouselModule,
CollapseModule,
BsDatepickerModule.forRoot(),
BsDropdownModule,
ModalModule,
PaginationModule,
PopoverModule,
ProgressbarModule,
RatingModule,
SortableModule,
TabsModule,
TimepickerModule.forRoot(),
TooltipModule.forRoot()
],
providers: [AlertConfig,
BsDatepickerConfig,
BsDropdownConfig,
BsModalService,
PaginationConfig,
ProgressbarConfig,
RatingConfig,
DraggableItemService,
TabsetConfig],
bootstrap: [AppComponent]
})
export class AppModule { }
Aggiorna test.component.html per utilizzare il componente timepicker.
test.component.html
<timepicker [(ngModel)]="time"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
<timepicker [(ngModel)]="time" [showMeridian]="false"></timepicker>
<pre class="alert alert-info">Time is: {{time}}</pre>
Aggiorna test.component.ts per le variabili e i metodi corrispondenti.
test.component.ts
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-test',
templateUrl: './test.component.html',
styleUrls: ['./test.component.css']
})
export class TestComponent implements OnInit {
time: Date = new Date();
constructor() {}
ngOnInit(): void {
}
}
Costruisci e servi
Eseguire il seguente comando per avviare il server angolare.
ng serve
Una volta che il server è attivo e funzionante. Apri http: // localhost: 4200. Fare clic sul pulsante Apri modale e verificare il seguente output.