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

tool bar location

2 Answers 47 Views
Editor
This is a migrated thread and some comments may be shown as answers.
Mark
Top achievements
Rank 1
Mark asked on 11 Aug 2016, 11:53 AM
In the editor, Is there a way to relocate the tool bar to the bottom left as opposed to the upper left?

2 Answers, 1 is accepted

Sort by
0
Accepted
Bozhidar
Telerik team
answered on 12 Aug 2016, 08:00 AM
Hello,

The Kendo UI Editor does not support such functionality. However, you could achieve that using jQuery to change the elements position inside the DOM, here is a simple dojo example: http://dojo.telerik.com/@ruzhenov/APIlA

The code that do the magic is the following:

$('.k-editor-widget tr:first-child').insertAfter('.k-editor-widget tr:last-child');

If for some reason, the rendered HTML is different, you just have to use the same approach by finding the TR that contains the toolbar (in that example it is the first TR) and insert it after the last TR.

Note that this is a custom solution and I could not confirm that everything will work properly.

You could also look at the following forum thread, but it is with an inline editor: http://www.telerik.com/forums/position-of-toolbar-for-editor

Regards,
Bozhidar
Telerik by Progress
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
Mark
Top achievements
Rank 1
answered on 12 Aug 2016, 11:55 AM
Thanks.  This works like a champ!
Tags
Editor
Asked by
Mark
Top achievements
Rank 1
Answers by
Bozhidar
Telerik team
Mark
Top achievements
Rank 1
Share this question
or