SMART datagrid v.1 > Classes > Holiday

Back  Forward

DataLudi.Holiday.description  property

The hint string which is displayed when the mouse is over the holiday cell specified in this object in DateCellEditor calendar. 

Defaults to null.

Getter
function description(): String
Setter
function setDescription(value: String)
Code -1
    var columns = [{
        editor: {
            type: "date",
            holidays: [{
                type: "date",
                dates: ["2016/07/11", "2016/08/11"],
                description: "Company Holiday",
                border: "#f00",
                background: "#10ff0000",
                color: "#800"
            }]
        }
    },
    ...
    ];
    grid.setColumns(columns);
See Also
background
color
border
Examples
Date Editor