Hello,
I'm using RichTextEditor in ASP.NET MVC application.
My native language contains special characters and to type it using keyboard i have to use additional "right ALT" key.
For example "ALT + L" = "Ł".
I noticed that maybe keyboard navigation disturbs, so I disabled it using .AllowKeyboardnavigation(false)
Finally, the only characters which can I receive are:
"alt + a" = "ą",
"alt + s" = "ś",
"alt + o" = "ó",
"alt + n" = "ń"
But these are still missing:
"alt + e" = "ę",
"alt + l" = "ł",
"alt + z" = "ż",
"alt + x" = "ź",
"alt + c" = "ć"
Thanks for help!