taffy-coustom-ui
Version:
25 lines (19 loc) • 659 B
text/typescript
import { Component, ViewChild } from '@angular/core';
import { jqxDateTimeInputComponent } from 'jqwidgets-ng/jqxdatetimeinput';
export class AppComponent {
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;
}
}