SMART datagrid v1.4 > Classes > DisplayOptions
true면 고정 영역에 포함된 컬럼들을 사용자가 이동할 수 있다. 
컬럼 헤더셀을 마우스로 드래깅해서 이동시킨다. 우선, columnMovable이 true여야 한다.
기본값은 false.
    grid.setOptions({
        display: {
            columnMovable: true,
            fixedColumnMovable: true
        }
    });
    grid.setDisplayOptions({
        columnMovable: true,
        fixedColumnMovable: true
    });
    grid.displayOptions().setFixedColumnMovable(true);