Check documentation for the latest version of dhtmlxSuite setText DHTMLX Docs

setText

sets the text of an item

void setText(object text);
textobjectthe item's new data with text, icon and other attrs

Example

// init sidebar
var mySidebar = new dhtmlXSideBar({
    parent: "sidebarObj",
    template: "details",
    icons_path: "icons/16x16/",
    width: 160,
    items: [
        {id: "a1", text: "Item 1", icon: "image1.png", selected: true},
        {id: "a2", text: "Item 2", icon: "image2.png"}
    ]
});
 
// change text
mySidebar.items("a1").setText({text:"Item 1!!!"});

Back to top