2026-02-24 20:44:16 +00:00
|
|
|
import { DataGridTypes } from 'devextreme-react/data-grid'
|
2026-05-06 10:55:34 +00:00
|
|
|
import {
|
|
|
|
|
ColumnFormatDto,
|
|
|
|
|
GridBoxOptionsDto,
|
|
|
|
|
ImageUploadOptionsDto,
|
|
|
|
|
TagBoxOptionsDto,
|
|
|
|
|
} from '../../proxy/form/models'
|
2026-02-24 20:44:16 +00:00
|
|
|
|
|
|
|
|
interface IGridColumnData extends DataGridTypes.Column {
|
|
|
|
|
colData?: ColumnFormatDto
|
|
|
|
|
extras?: {
|
|
|
|
|
multiValue: boolean
|
|
|
|
|
editorOptions?: string
|
|
|
|
|
tagBoxOptions?: TagBoxOptionsDto
|
|
|
|
|
gridBoxOptions?: GridBoxOptionsDto
|
2026-05-06 10:55:34 +00:00
|
|
|
imageUploadOptions?: ImageUploadOptionsDto
|
2026-02-24 20:44:16 +00:00
|
|
|
}
|
|
|
|
|
caption?: string
|
|
|
|
|
isBand?: boolean
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type GridColumnData = IGridColumnData
|