As of 16.0, preview image support has been implemented for core Part
s and is no longer exclusive to DsPart
s.
As a result, the global constant dsPreviewColumn
has been removed from cm.abstract.dataSymbol
as well as the DsPreviewColumn
itself.
The core version of this column is in cm/core/calc/init/partPreviewColumn.cm
. A renamer has also been added to direct loaded DsPreviewColumn
types to the new PartPreviewColumn
type.
A new constant of the column (called partPreviewColumn
) has been added and is registered in cm/core/init/corePartColumns.cm
.
In cm/abstract/dataSymbol/partColumns/prdPreviewColumn.cm Removed: public class DsPreviewColumn extends BasicPartColumn : inherit constructors {} Removed: public class DsPreviewImageGridCell extends DsImageGridCell {} In cm/core/init/partPreviewColumn.cm and cm/core/calc/previewImageGridCell.cm Added: public class PartPreviewColumn extends BasicPartColumn : inherit constructors {} Added: public class PreviewImageGridCell extends ImageGridCell : inherit constructors {}