Hello,
I have three questions about the Kendo React Editor:
- Is it possible to move the toolbar to the right side of the editor instead of above it?
- Is it possible to restrict the editor to being one line only (like a <input type="text"> and not a <textarea>)?
- Is it possible to prevent the user from using key inputs (like Ctrl+B for bold)?
What I want to do is basically an editor that behaves like a normal input field but where I can have a custom dropdown for adding tags, preferably positioned to the right of the "input field".
What I have is an array of "tags" that I want to be able to add to a text field. The tags should be "stylable" like tags I had in a previous question (https://www.telerik.com/forums/creating-a-custom-editor-node-with-html-inside). Other than that I want the field to behave like a regular text field (i.e. no styling, no keyboard shortcuts etc.) and I figured that the easiest way was to create an editor with the above constraints.
Constraints #2 and #3 are most important, I can live without #1 if it's not possible.