mirror of
https://github.com/haiwen/seahub.git
synced 2025-09-15 06:44:16 +00:00
14 lines
362 B
JavaScript
14 lines
362 B
JavaScript
export default class GridColumn {
|
|
|
|
constructor(object) {
|
|
this.key = object.columnName || object.name;
|
|
this.name = object.columnName || object.name;
|
|
this.type = object.columnType || null;
|
|
this.editor = null;
|
|
this.editable = object.editable || true;
|
|
this.width = object.width || 200;
|
|
this.resizable = object.resizable || true;
|
|
}
|
|
|
|
}
|