1
0
mirror of https://github.com/haiwen/seahub.git synced 2025-09-15 06:44:16 +00:00
Files
seahub/frontend/src/pages/data-grid/model/grid-column.js
2019-06-14 16:30:33 +08:00

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;
}
}