I am looking for a way to hide either the toolbar or the buttons with in it. I am using angular with the batch editing and when I disenable the grid I want to be able to be able to either hid or disable the batch toolbar.
I have found example like this that work for MVC or JS approaches, using the databound function,
http://www.telerik.com/forums/how-do-you-remove-toolbar-separators
I have also tried doing it this way, while it does find the element, there are no valid methods or properties
var elements = document.getElementsByClassName("k-grid-toolbar");
while (elements.length > 0) {
elements[0].parentNode.removeChild(elements[0]);
}