SMART datagrid v.1 > Classes > TextCellRenderer

Back  Forward

DataLudi.TextCellRenderer.showTooltip  property

If it is true, when the mouse is over the data cell which uses this renerer, it will display the text value of data cell as tooltip. 

Defaults to false.

Getter
function showTooltip(): Boolean
Setter
function setShowTooltip(value: Boolean)
Code -1
    var columns = [{
        name: "customer",
        fieldName: "customer",
        renderer: {
            showTooltip: true
        }
    },
    ...
    ];
    grid.setColumns(columns);
See Also
ValueColumn.renderer
Examples
Text Cell Renderer