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

How to hide toolbar, formula bar and worksheet tabstrip

5 Answers 726 Views
Spreadsheet
This is a migrated thread and some comments may be shown as answers.
Stefan
Top achievements
Rank 1
Stefan asked on 10 Feb 2016, 12:18 PM

Is it possible?

If yes, how?

5 Answers, 1 is accepted

Sort by
0
Magdalena
Telerik team
answered on 11 Feb 2016, 09:03 AM
Hi Stefan,

Actually this is not supported scenario. You can hide the elements simply by the following:
.rssToolbarWrapper,
.rssFormulaBar,
.rssSheetsbar  {
    display: none;
}

But after that it is necessary to ad your custom JavaScript that will recalculate elements height.

Regards,
Magdalena
Telerik
Do you want to have your say when we set our development plans? Do you want to know when a feature you care about is added or when a bug fixed? Explore the Telerik Feedback Portal and vote to affect the priority of the items
0
Jason
Top achievements
Rank 1
answered on 26 May 2016, 12:35 AM

Hi,

 

Any chance you could supply code to truly hide the area for the worksheet tabs?

 

I think it is highly useful for numerical applications to be able to run a worksheet as part of the UI, divorcing the user from the typical excel features. The one core feature it provides over a grid is copy and paste - just like excel. This one simple request is resolved usng a spreadsheet control instead of a grid to view data! SHould be a feature :)

 

Jason

0
Magdalena
Telerik team
answered on 30 May 2016, 08:18 AM
Hi Jason,

Thank you for your feedback.

If you would like us to implement a new feature to our controls, you can log it in our feedback portal so you can follow the item and everyone can vote for it.

Regards,
Magdalena
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
Magdalena
Telerik team
answered on 30 May 2016, 08:25 AM
Hello Jason,

As the spreadsheet is Kedno control wrapped by ASP.NET AJAX, the better place for the feature request is the Kendo feedback portal.

Regards,
Magdalena
Telerik
Do you need help with upgrading your ASP.NET AJAX, WPF or WinForms projects? Check the Telerik API Analyzer and share your thoughts.
0
Doğan
Top achievements
Rank 1
answered on 22 Mar 2019, 12:49 PM
this way I could use and hide;

<telerik:RadSpreadsheet runat="server" ID="ExcelImportPreviewSpreadsheet" ColumnWidth="64" Skin="Metro" Width="100%">
                            <Toolbar>
                                <telerik:SpreadsheetToolbarTab>
                                    <telerik:SpreadsheetToolbarGroup>
                                        <telerik:SpreadsheetTool Visible ="false" />
                                    </telerik:SpreadsheetToolbarGroup>
                                </telerik:SpreadsheetToolbarTab>
                            </Toolbar>
</telerik:RadSpreadsheet>
Tags
Spreadsheet
Asked by
Stefan
Top achievements
Rank 1
Answers by
Magdalena
Telerik team
Jason
Top achievements
Rank 1
Doğan
Top achievements
Rank 1
Share this question
or