UNPKG

jqwidgets-framework

Version:

jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.

25 lines (19 loc) 683 B
import { Component, ViewChild } from '@angular/core'; import { jqxDateTimeInputComponent } from 'jqwidgets-ng/jqxdatetimeinput'; @Component({ selector: 'app-root', templateUrl: './app.component.html' }) export class AppComponent { @ViewChild('myDateTimeInput', { static: false }) myDateTimeInput: jqxDateTimeInputComponent; count: number = 0; leftBtn(): void { this.myDateTimeInput.dropDownHorizontalAlignment('left'); } // unnecessary overwrite in beggining rightBtn(): void { if (this.count !== 0) this.myDateTimeInput.dropDownHorizontalAlignment('right'); this.count = 1; } }