jqwidgets-scripts-custom
Version:
jQWidgets is an advanced jQuery, Angular 7, Vue, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
66 lines (56 loc) • 2.33 kB
text/typescript
import { Component, ViewChild, ElementRef } from '@angular/core';
import { jqxProgressBarComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxprogressbar';
import { jqxButtonComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxbuttons';
import { jqxInputComponent } from 'jqwidgets-scripts/jqwidgets-ts/angular_jqxinput';
export class AppComponent {
myHorizontalProgressBar: jqxProgressBarComponent;
myVerticalProgressBar: jqxProgressBarComponent;
ValueInputElement: jqxInputComponent;
valueInput: number;
isUpdated: boolean = false;
renderText(text: string): string {
return "<span class='jqx-rc-all' style='background: #ffe8a6; color: #e53d37; font-style: italic;'>" + text + "</span>";
}
getValueInput(): number {
return parseInt(this.ValueInputElement.val());
}
//display: none;
onClick(): void {
let value = this.getValueInput();
if (!isNaN(value)) {
this.valueInput = value;
this.myHorizontalProgressBar.val(value);
this.myVerticalProgressBar.val(value);
this.isUpdated = true;
}
}
onCheckBox(event: any): void {
let value = this.getValueInput();
if (value != null && this.isUpdated) {
this.myHorizontalProgressBar.value(this.valueInput);
this.myVerticalProgressBar.value(this.valueInput);
}
let isChecked = event.args.checked;
this.myHorizontalProgressBar.showText(isChecked);
this.myVerticalProgressBar.showText(isChecked);
}
onCustomTextCheckBox(event: any): void {
let value = this.getValueInput();
if (value != null && this.isUpdated) {
this.myHorizontalProgressBar.value(this.valueInput);
this.myVerticalProgressBar.value(this.valueInput);
}
if (event.args.checked) {
this.myHorizontalProgressBar.renderText(this.renderText);
this.myVerticalProgressBar.renderText(this.renderText);
}
else {
this.myHorizontalProgressBar.renderText(null);
this.myVerticalProgressBar.renderText(null);
}
}
}