refresh

обновляет текст хедера

void refresh();

Example

webix.ui({
    container:"layout_div",
    view:"accordion",
    cols:[
        { header:"col 1", id:"a1", body:"content 1"},
        { header:"col 2", id:"a2", body:"content 2"}
    ]
});
 
$$("a1").define("header","new header");
$$("a1").refresh(); // хедер:'col1' -> хедер:'new header'

See also
Наверх
If you have not checked yet, be sure to visit site of our main product Webix ui component library and page of javascript accordion product.