Documentation

setValue

sets a new value for the component

void setValue(string| object date);

Parameters

datestring| objecta Date object or a string representing a date

See also

Example

webix.ui({
    container:"box",
    view:"calendar",
    id:"calendar1"
});
$$('calendar1').setValue(new Date(2012,3,30));

Details

The method is analogous to selectDate.

Back to top