SMART datagrid v1.4 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.fixedColumnMovable  property

true면 고정 영역에 포함된 컬럼들을 사용자가 이동할 수 있다. 

컬럼 헤더셀을 마우스로 드래깅해서 이동시킨다. 우선, columnMovabletrue여야 한다. 

기본값은 false.

Getter
function fixedColumnMovable(): Boolean
Setter
function setFixedColumnMovable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            columnMovable: true,
            fixedColumnMovable: true
        }
    });
Code -2
    grid.setDisplayOptions({
        columnMovable: true,
        fixedColumnMovable: true
    });
Code -3
    grid.displayOptions().setFixedColumnMovable(true);
See Also
columnMovable
fixedColumnResizable
fixedColumnCount
EditOptions.fixedColumnEditable
Examples
Column Moving
Fixed Columns