- Home
- Forum
- ASP.NET MVC (Classic)
- Insert special characters
Insert special characters
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!
Thanks for help!
SIGN IN To post a reply.
5 Replies
KR
Keerthana Rajendran
Syncfusion Team
November 23, 2017 10:51 AM UTC
Hi Gregor,
Thank you for contacting Syncfusion support.
Currently, we have provided keyboard navigation support for default language en-US in RTE. Please refer to the below given UG for keyboard shortcuts in RTE
Please provide us additional details on the keyboard language which you are using and if possible share us a video on the working of shortcuts and issues you face so that we can validate and provide better solution at the earliest.
Regards,
Keerthana.
GR
Gregor
December 20, 2017 11:48 AM UTC
I am using Polish keyboard (POL). Here you can try yourself type this characters: http://polish.typeit.org/




In the above image I highlighted with red color these special polish characters.
In the movie below I showed how it looks using standard input field (subject) and using RichTextEditor.
Thanks for help!
KR
Keerthana Rajendran
Syncfusion Team
December 21, 2017 12:35 PM UTC
Hi Gregor,
Thanks for sharing us the requested details.
We suggest you to empty the _iframeKeyDown method of RTE along with allowKeyBoardNavigation set to false as shown below to get these polish keyboard shortcuts work in your end.
|
<script type="text/javascript">
ej.RTE.prototype._iframeKeyDown=function(e){}
$(function () {
$("#rteSample").ejRTE({width:"100%", minWidth:"100px",isResponsive:true,allowKeyBoardNavigation:false});
});
</script> |
We have prepared a simple sample for your reference. Please refer to the below link
Regards,
Keerthana.
GR
Gregor
December 21, 2017 02:58 PM UTC
It works, Thank you!
KR
Keerthana Rajendran
Syncfusion Team
December 22, 2017 05:13 AM UTC
Hi Gregor,
Most Welcome. We are glad to hear that your issue has been resolved. Please get back to us if you require further assistance on this. We will be happy to assist you.
Regards,
Keerthana.
SIGN IN To post a reply.
- 5 Replies
- 2 Participants
-
GR Gregor
- Nov 21, 2017 10:28 PM UTC
- Dec 22, 2017 05:13 AM UTC