refresh

Reloads the data and repaints the ListBox. Triggers the dataBound event.

Example

<select id="listBox"></select>
<script>
$("#listBox").kendoListBox({
     dataSource:  [
        { name: "Jane Doe" },
        { name: "John Doe" }
    ],
    template: "<div>#:name#</div>"
});
var listBox = $("#listBox").data("kendoListBox");
// refreshes the list box
listBox.refresh();
</script>
In this article