SMART datagrid v1.4 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.parentChangable  property

이 속성값이 true이고 columnMovabletrue면, 사용자가 마우스 드래깅을 이용해서 다른 컬럼그룹으로 이동할 수 있도록 한다. 

기본값은 false.

Getter
function parentChangable(): Boolean
Setter
function setParentChangable(value: Boolean)
Code -1
    grid.setOptions({
        display: {
            parentChangable: true,
            columnMovable: true
        }
    });
Code -2
    grid.setDisplayOptions({
        parentChangable: true,
        columnMovable: true
    });
Code -3
    grid.displayOptions().setParentChangable(true);
See Also
columnMovable
movable
Examples
Column Moving