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;
|
formatTooltip?: Function;
|
||||||
copyContent?: boolean;
|
copyContent?: boolean;
|
||||||
editable?: boolean;
|
editable?: boolean;
|
||||||
|
focus?: boolean;
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,7 @@ export class ObjectDataColumn implements DataColumn {
|
|||||||
cssClass: string;
|
cssClass: string;
|
||||||
template?: TemplateRef<any>;
|
template?: TemplateRef<any>;
|
||||||
copyContent?: boolean;
|
copyContent?: boolean;
|
||||||
|
focus?: boolean;
|
||||||
|
|
||||||
constructor(input: any) {
|
constructor(input: any) {
|
||||||
this.key = input.key;
|
this.key = input.key;
|
||||||
@ -41,5 +42,6 @@ export class ObjectDataColumn implements DataColumn {
|
|||||||
this.cssClass = input.cssClass;
|
this.cssClass = input.cssClass;
|
||||||
this.template = input.template;
|
this.template = input.template;
|
||||||
this.copyContent = input.copyContent;
|
this.copyContent = input.copyContent;
|
||||||
|
this.focus = input.focus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user