mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-08-07 17:48:54 +00:00
Date format support for datatable columns
This commit is contained in:
@@ -25,7 +25,7 @@ export interface DataTableAdapter {
|
||||
getSorting(): DataSorting;
|
||||
setSorting(sorting: DataSorting): void;
|
||||
sort(key?: string, direction?: string): void;
|
||||
|
||||
|
||||
}
|
||||
|
||||
export interface DataRow {
|
||||
@@ -39,7 +39,8 @@ export interface DataRow {
|
||||
export interface DataColumn {
|
||||
|
||||
key: string;
|
||||
type: string; // text|image
|
||||
type: string; // text|image|date
|
||||
format?: string;
|
||||
sortable?: boolean;
|
||||
title?: string;
|
||||
srTitle?: string;
|
||||
|
Reference in New Issue
Block a user