jqwidgets-framework
Version:
jQWidgets is an advanced Angular, Vue, Blazor, React, Web Components, jquery, ASP .NET MVC, Custom Elements and HTML5 UI framework.
60 lines (52 loc) • 2.3 kB
text/typescript
import { Component } from '@angular/core';
import { generatedata } from './../../../sampledata/generatedata';
({
selector: 'app-root',
templateUrl: './app.component.html'
})
export class AppComponent {
source: any =
{
localdata: generatedata(50, false),
datafields:
[
{ name: 'firstname', type: 'string' },
{ name: 'lastname', type: 'string' },
{ name: 'productname', type: 'string' },
{ name: 'date', type: 'date' },
{ name: 'quantity', type: 'number' },
{ name: 'price', type: 'number' },
{ name: 'total', type: 'number' }
],
datatype: 'array',
updaterow: (rowid: any, rowdata: any): any => {
// synchronize with the server - send update command
}
};
dataAdapter: any = new jqx.dataAdapter(this.source);
columns: any[] =
[
{ text: 'First Name', groupable: true, aggregates: ['count'], datafield: 'firstname', width: 100 },
{ text: 'Last Name', groupable: true, aggregates: ['count'], datafield: 'lastname', width: 100 },
{ text: 'Product', groupable: true, columntype: 'dropdownlist', datafield: 'productname', width: 200 },
{ text: 'Quantity', datafield: 'quantity', aggregates: ['sum'], width: 70, cellsalign: 'right' },
{ text: 'Price', datafield: 'price', aggregates: ['sum'], cellsalign: 'right', width: 100, cellsformat: 'c2' },
{
text: 'Total', datafield: 'total', aggregates: ['sum'], cellsalign: 'right', cellsformat: 'c2',
cellsrenderer: (row, column, value, defaultRender, rowData) => {
if (value.toString().indexOf('Sum') >= 0) {
return defaultRender.replace('Sum', 'Total');
}
},
aggregatesrenderer: (aggregates, column, element) => {
return '<div style="position: relative; margin-top: 4px; margin-right:5px; text-align: right; overflow: hidden;">' + 'Total' + ': ' + aggregates.sum + '</div>';
}
}
];
getWidth(): any {
if (document.body.offsetWidth < 850) {
return '90%';
}
return 850;
}
}