How do I add a toolbar in which to place a search input into and other buttons … in the datatable grid code below:
grid = new webix.ui({
container:"areaA",
view:"datatable",
columns:columnData,
autoheight:true,
autowidth:true,
select:"row",
on:{
onSelectChange:function(){
var text = "Selected: "+grid.getSelectedId(true).join();
document.getElementById('areaB').innerHTML = text;
}
},
data:resultData
});