Documentation

refresh

repaints the component

void refresh();

See also

Example

webix.ui({
    container:"box",
    view:"calendar",
    id:"calendar1"
});
 
$$("calendar1").define("weekNumber", true);
$$("calendar1").refresh();

Back to top