SMART datagrid v.1 > Classes > CheckCellRenderer

Back  Forward

DataLudi.CheckCellRenderer.dblClickEditable  property

If editable is true and this property is true, you can change the value by double clicking the mouse. At this point, it will not be changed by clicking the mouse. 

Defaults to false.

Getter
function dblClickEditable(): Boolean
Setter
function setDblClickEditable(value: Boolean)
Code -1
    grid.setColumns([{
        name: "Shipping",
        fieldName: "Shipping",
        renderer: {
            type: "check",
            editable: true,
            dblClickEditable: true
        }
    },
    ...
    ]);
See Also
editable
editOnClick
threeStates
Examples
Check Cell Renderer