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

Toolbar Orientation

1 Answer 92 Views
Toolbar
This is a migrated thread and some comments may be shown as answers.
Joel
Top achievements
Rank 2
Iron
Iron
Iron
Joel asked on 06 Aug 2019, 07:13 PM
     Can I have a vertical toolbar?

1 Answer, 1 is accepted

Sort by
0
Aleksandar
Telerik team
answered on 09 Aug 2019, 10:56 AM
Hello Joel,

A vertical toolbar would be possible if you customize the styling, as the native ToolBar does not support this functionality. For a built-in vertical functionality you can check the Menu and the available demo.

For a simple ToolBar:
@(Html.Kendo().ToolBar()
    .Name("MyToolBar")
    .Items(items =>
    {
        items.Add().Type(CommandType.Button).Text("Button 1").Overflow(ShowInOverflowPopup.Never);
        items.Add().Type(CommandType.Button).Text("Button 2").Overflow(ShowInOverflowPopup.Never);
        items.Add().Type(CommandType.Button).Text("Button 3").Overflow(ShowInOverflowPopup.Never);
        items.Add().Type(CommandType.Button).Text("Button 4").Overflow(ShowInOverflowPopup.Never);
        items.Add().Type(CommandType.Button).Text("Button 5").Overflow(ShowInOverflowPopup.Never);
    })                                             
    )

you need to specify the following style to make the toolbar vertical:
<style>
    #MyToolBar {
        display: inline-block;
        width: 200px;
    }
 
    .k-button {
        display: block;
    }
</style>

I hope this helps. Let me know if you have further questions.

Regards,
Aleksandar
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
Toolbar
Asked by
Joel
Top achievements
Rank 2
Iron
Iron
Iron
Answers by
Aleksandar
Telerik team
Share this question
or