RichTextbox vs TextBox

0
0

I noticed while working with the text box in our application that we have hit a wall where the textbox can only go up to 32 kb and then starts giving us an error. while looking around the internet I found that the RichTextBox has a limit of 2 mb, so i went into the docs to look up the implementation of RichTextBox you guys had done and noticed it wasn’t there so i am currently using just the reg implementation. my question is are you guys looking to adding the RichTextBox in a future implementation cause would prefer to use the wisej implementation.

  • You must to post comments
0
0
We didn’t implement the RichTextBox class because there are too many great html editor online and we didn’t want to restrict the choice. Also we didn’t want to replicate the rtf format since it’s basically obsolete.
That’s why we have provided three HTML editor controls (they should be derived from TextBox) using TinyEdit, TinyMCE and CKEdit. You can find the source code in the /extensions section.
You can find more info here:
If you need to convert to/from RTF I believe there are some open source C# libraries for that.
HTH
Best,
Luca
  • You must to post comments
2
1

figured out the issue we where able to change the limit from the 32 kb that is set by default by setting textbox.maxlength = 0 which allows the maxlength to default to int32.maxval so if anyone else is having an issue where they feel they need a richtextbox here is another solution for you.

  • You must to post comments
Showing 2 results
Your Answer

Please first to submit.