@syncfusion/ej2-vue-grids
Version:
Feature-rich JavaScript datagrid (datatable) control with built-in support for editing, filtering, grouping, paging, sorting, and exporting to Excel. for Vue
32 lines (31 loc) • 981 B
TypeScript
import { DefineVueDirective } from '@syncfusion/ej2-vue-base';
import { AggregateRowModel } from '@syncfusion/ej2-grids';
export declare let AggregatesDirective: any;
export declare const AggregatesPlugin: {
name: string;
install(Vue: any): void;
};
/**
* `e-aggregate` directive represent a aggregate row of the VueJS Grid.
* It must be contained in a Grid component(`ejs-grid`).
* ```vue
* <ejs-grid :dataSource]='data' allowPaging='true' allowSorting='true'>
* <e-columns>
* <e-column field='ID' width='100'/>
* <e-column field='name' headerText='Name' width='100'/>
* </e-columns>
* <e-aggregates>
* <e-aggregate>
* <e-columns>
* <e-column field='ID' type='Min'/>
* </e-columns>
* </e-aggregate>
* </e-aggregates>
* </ejs-grid>
* ```
*/
export declare let AggregateDirective: DefineVueDirective<AggregateRowModel>;
export declare const AggregatePlugin: {
name: string;
install(Vue: any): void;
};