jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
21 lines (17 loc) • 746 B
text/typescript
import { Component, ViewChild, ViewEncapsulation, AfterViewInit } from '@angular/core';
import { jqxRibbonComponent } from 'jqwidgets-ng/jqxribbon';
export class AppComponent implements AfterViewInit {
jqxRibbon: jqxRibbonComponent;
ngAfterViewInit() {
this.jqxRibbon.setPopupLayout(0, "near", 130, 205);
this.jqxRibbon.setPopupLayout(1, "center", 130, 200);
this.jqxRibbon.setPopupLayout(2, "center", 130, 260);
this.jqxRibbon.setPopupLayout(3, "far", 130, 350);
}
}