mirror of
https://github.com/Alfresco/alfresco-ng2-components.git
synced 2025-05-26 17:24:56 +00:00
update column models
This commit is contained in:
parent
1784106e6b
commit
21d2d18d2e
@ -41,4 +41,5 @@ export interface DataColumn {
|
||||
formatTooltip?: Function;
|
||||
copyContent?: boolean;
|
||||
editable?: boolean;
|
||||
focus?: boolean;
|
||||
}
|
||||
|
@ -30,6 +30,7 @@ export class ObjectDataColumn implements DataColumn {
|
||||
cssClass: string;
|
||||
template?: TemplateRef<any>;
|
||||
copyContent?: boolean;
|
||||
focus?: boolean;
|
||||
|
||||
constructor(input: any) {
|
||||
this.key = input.key;
|
||||
@ -41,5 +42,6 @@ export class ObjectDataColumn implements DataColumn {
|
||||
this.cssClass = input.cssClass;
|
||||
this.template = input.template;
|
||||
this.copyContent = input.copyContent;
|
||||
this.focus = input.focus;
|
||||
}
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user