New to Kendo UI for jQueryStart a free 30-day trial

Remove the Undo and Redo Buttons on the Spreadsheet Toolbar without Hiding the Whole Toolbar

Environment

ProductProgress® Kendo UI® Spreadsheet for jQuery

Description

How can I remove the Undo and Redo buttons on the Kendo UI Spreadsheet toolbar without hiding the whole toolbar?

Solution

To remove the buttons, apply CSS rules.

    <div id="spreadsheet"></div>

    <script>
		$("#spreadsheet").kendoSpreadsheet();
    </script>

	<style>
		.k-spreadsheet .k-tabstrip-wrapper .k-spreadsheet-quick-access-toolbar {
			display: none;
		}
		.k-spreadsheet .k-tabstrip-wrapper .k-tabstrip-items {
			padding-left: .3em !important;
		}
	</style>

See Also