This is a migrated thread and some comments may be shown as answers.

Spread Sheet

1 Answer 94 Views
Spreadsheet
This is a migrated thread and some comments may be shown as answers.
Sriram
Top achievements
Rank 1
Sriram asked on 28 Sep 2018, 04:04 AM

 Hi,

we wanted to have kendo Spreadsheet like shown in image below, without Action Bar, Tab strip(like Home, insert, Data) and footer. I have removed them, but it  breaks functionality down. Is that possible without breaking functionality?

Please let me know.

 

Thank you

 

1 Answer, 1 is accepted

Sort by
0
Ivan Danchev
Telerik team
answered on 01 Oct 2018, 12:03 PM
Hi Sriram,

The Spreadsheet's toolbar and sheetsbar can be hidden by setting the corresponding options to false. The action bar can be hidden through CSS and to avoid the empty space at the bottom you can apply height: 100% to the Spreadsheet view element:
<style> 
  .k-spreadsheet .k-spreadsheet-action-bar {
      display: none;
  }
   
  .k-spreadsheet .k-spreadsheet-view {
    height: 100% !important;
  }
</style>

See the following dojo example.

Regards,
Ivan Danchev
Progress Telerik
Get quickly onboarded and successful with your Telerik and/or Kendo UI products with the Virtual Classroom free technical training, available to all active customers. Learn More.
Tags
Spreadsheet
Asked by
Sriram
Top achievements
Rank 1
Answers by
Ivan Danchev
Telerik team
Share this question
or