SMART datagrid v.1 > Classes > Holiday

Back  Forward

DataLudi.Holiday.border  property

The cell border color which is used when displaying holiday cell specified in this object in DateCellEditor calendar. 

Defaults to "#eee".

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