@syncfusion/ej2-filemanager
Version:
Essential JS 2 FileManager Component
32 lines (31 loc) • 1.05 kB
TypeScript
import { ChildProperty } from '@syncfusion/ej2-base';
import { ColumnModel } from './index';
/**
* Specifies the columns in the details view of the file manager.
*/
export declare const columnArray: ColumnModel[];
/**
* Specifies the grid settings of the File Manager.
*/
export declare class DetailsViewSettings extends ChildProperty<DetailsViewSettings> {
/**
* If `columnResizing` is set to true, Grid columns can be resized.
*
* @default true
*/
columnResizing: boolean;
/**
* Specifies the customizable details view.
*
* @default {
* columns: [{
* field: 'name', headerText: 'Name', minWidth: 120, customAttributes: { class: 'e-fe-grid-name' },
* template: '\<span class="e-fe-text">${name}\</span>'},{field: 'size', headerText: 'Size',
* minWidth: 50, width: '110', template: '\<span class="e-fe-size">${size}\</span>'},
* { field: '_fm_modified', headerText: 'DateModified',
* minWidth: 50, width: '190'}
* ]
* }
*/
columns: ColumnModel[];
}