SMART datagrid v.1 > Classes > CheckCellRenderer

Back  Forward

DataLudi.CheckCellRenderer.falseValues  property

If it is not a Boolean value, the values which can be read as false will be set as the string of being separated by comma. The values which can be read as true are specified by trueValues

Defaults to null.

Getter
function falseValues(): str
Setter
function setFalseValues(value: str)
Code -1
    grid.setColumns([{
        name: "Shipping",
        fieldName: "Shipping",
        renderer: {
            type: "check",
            editable: true,
            spaceKey: true,
            trueValues: "True",
            falseValues: "False"
        }
    },
    ...
    ]);
See Also
trueValues
threeStates
Examples
Check Cell Renderer