|
Search
You searched for the word(s):
Showing page 17 of 381 (3,805 total posts)
< 1 second(s)
-
Hi,
Maybe you can try the way below to handle different editor in OnInitialized ...
-
Hi,
Yes, by default, the editor will checks the browser language and siwthc the correct language for the user, also it will use the related dictionary too.
If you have set the CustomCulture for the editor, then it will use the culture what you set as the sepll check dictionary .
<CE:Editor ...
-
Hi,
you can use the way below to get the rtf format of the editor content.
RTE.Convertor.RTF.HTML2RTF content= new RTE.Convertor.RTF.HTML2RTF(editor1.Text);
t1.Text = content.RTF.ToString();
and you can use the code below to load the rtf format content into editor, it will covers into ...
-
Hi,
you need to set the width for the <td> , then it should shows correct in pdf too.
<table border="0" cellspacing="2" cellpadding="2" ...
-
Hi,
The
style format only apply with the text you selected, it does not use for the new
text you type in editor. So can not set the style first and type the content.
you need to fill the content first, then select the text to apply the style,
this is by design, not a bug. We did not use the same way as the ...
-
Hi,
It does not has an unlimited setting, the only way is set to a very large value, sorry for your inconvenience.
Regards,
Ken
-
Hi,
I suggest you download the demo at http://richtexteditor.com/download/richtexteditor.rar and test it directly. we have mvc2/3/4 demo in it, so you can check the source code and use the same way in your own page.
Regards,
Ken
-
Hi,
It will fire event "UploadImage", you can try the code below, it will changes the upload image name to "cutesoft.jpg".
Protected Sub Editor1_UploadImage(sender As Object, args As UploadImageEventArgs)
args.FileName="cutesoft.jpg"
End ...
-
Hi,
If you do not want to block any upload, then why you set the settings below to 100? the settings below means if the image width/height large than 100px, then block it and do not allow this upload.
<security name="MaxImageWidth">100</security>
<security ...
-
case 2 is the correct setting. If the image width/height exceeds MaxImageWidth or MaxImageHeight setting, then the editor will blocks the upload, this is the correct behavior.
Ken
... 17 ...
|
|
|