2025-05-06 06:45:49 +00:00
|
|
|
import { DataGridTypes } from 'devextreme-react/data-grid'
|
2025-08-12 08:39:06 +00:00
|
|
|
import { ColumnFormatDto, GridBoxOptionsDto, TagBoxOptionsDto } from '../../proxy/form/models'
|
2025-05-06 06:45:49 +00:00
|
|
|
|
|
|
|
|
interface IGridColumnData extends DataGridTypes.Column {
|
|
|
|
|
colData?: ColumnFormatDto
|
|
|
|
|
extras?: {
|
|
|
|
|
multiValue: boolean
|
|
|
|
|
editorOptions?: string
|
|
|
|
|
tagBoxOptions?: TagBoxOptionsDto
|
|
|
|
|
gridBoxOptions?: GridBoxOptionsDto
|
|
|
|
|
}
|
|
|
|
|
caption?: string
|
|
|
|
|
isBand?: boolean
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type GridColumnData = IGridColumnData
|