Enable scroller in Angular List box component
15 Sep 20222 minutes to read
The ListBox supports scrolling and it can be achieved by restricting the height of the list box using height
property.
In the following sample, height
of the list box is restricted to 290px
.
import { Component } from '@angular/core';
@Component({
selector: 'app-container',
template: `<ejs-listbox id="listbox" [dataSource]="data" height="290px"></ejs-listbox>`
})
export class AppComponent {
public data: { [key: string]: Object }[] = [
{ text: 'Account Settings', id: 'list-01' },
{ text: 'Address Book', id: 'list-02' },
{ text: 'Delete', id: 'list-03' },
{ text: 'Forward', id: 'list-04' },
{ text: 'Reply', id: 'list-05' },
{ text: 'Reply All', id: 'list-06' },
{ text: 'Save All Attachments', id: 'list-07' },
{ text: 'Save As', id: 'list-08' },
{ text: 'Touch/Mouse Mode', id: 'list-09' },
{ text: 'Undo', id: 'list-10' }
];
}
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { FormsModule, ReactiveFormsModule } from '@angular/forms';
import { AppComponent } from './app.component';
import { ListBoxComponent } from '@syncfusion/ej2-angular-dropdowns';
import { ButtonComponent } from '@syncfusion/ej2-angular-buttons';
/**
* Module
*/
@NgModule({
imports: [
BrowserModule,FormsModule, ReactiveFormsModule
],
declarations: [AppComponent, ListBoxComponent, ButtonComponent],
bootstrap: [AppComponent]
})
export class AppModule { }
import { platformBrowserDynamic } from '@angular/platform-browser-dynamic';
import { enableProdMode } from '@angular/core';
import { AppModule } from './app.module';
enableProdMode();
platformBrowserDynamic().bootstrapModule(AppModule);