New to Kendo UI for jQuery? Download free 30-day trial

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

Environment

Product Progress® 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

In this article