jqwidgets-framework
Version:
jQWidgets is an advanced jQuery, Angular, React, ASP .NET MVC, Custom Elements and HTML5 UI framework.
22 lines (17 loc) • 609 B
text/typescript
import { Component, ViewChild, ViewEncapsulation } from '@angular/core';
import { jqxScrollViewComponent } from '../../../jqwidgets-ts/angular_jqxscrollview';
export class AppComponent {
myScrollView: jqxScrollViewComponent;
onStartClicked(): void {
this.myScrollView.slideShow(true);
};
onStopClicked(): void {
this.myScrollView.slideShow(false);
};
}