SMART datagrid v.1 > Classes > DisplayOptions

Back  Forward

DataLudi.DisplayOptions.parentChangable  property

If this property value is true and columnMovable is true, the user can move to another column group by using mouse dragging. 

Defaults to 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