UNPKG

jqwidgets-framework

Version:

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

46 lines (38 loc) 1.35 kB
import { Component, ViewEncapsulation } from '@angular/core'; import { generatedata } from './../../../sampledata/generatedata'; @Component({ selector: 'app-root', templateUrl: './app.component.html', styleUrls: ['./app.component.css'], encapsulation: ViewEncapsulation.None }) export class AppComponent { data: any = generatedata(500, false); getWidth() : any { if (document.body.offsetWidth < 850) { return '90%'; } return 850; } source: any = { localdata: generatedata(500, false), datafields: [ { name: 'name', type: 'string' }, { name: 'productname', type: 'string' }, { name: 'available', type: 'bool' }, { name: 'date', type: 'date' }, { name: 'quantity', type: 'number' } ], datatype: 'array' }; dataAdapter: any = new jqx.dataAdapter(this.source); columns: any[] = [ { text: 'Name', columntype: 'textbox', datafield: 'name', width: '20%' }, { text: 'Product', datafield: 'productname', width: '35%' }, { text: 'Ship Date', datafield: 'date', filtertype: 'date', width: '30%', cellsalign: 'right', cellsformat: 'd' }, { text: 'Qty.', datafield: 'quantity', width: '15%', cellsalign: 'right' } ]; }