Questions tagged [richtextarea]
33 questions
6
votes
1 answer
Counter for TinyMCE is not working as expected
I know there are so many solutions out there but cannot get right solution. I have written code for customized counter in tinyMCE version 3 which has maxlength attribute which is not working. I want to stop giving more text when counter reaches to…

Juke
- 1,306
- 2
- 11
- 27
2
votes
3 answers
Load data into TinyMCE programmatically
I have multiple text-areas that I'd like to enhance using tinyMCE. I can get the text areas to show as the Rich Text Editors by initializing TinyMCE on all text areas in the page as below:
$(function () {
tinymce.init({
selector:…

Marty
- 116
- 1
- 10
2
votes
0 answers
GWT RichTextArea ReadOnly Workaround
GWT's RichTextArea doesn't have a method to make it "ReadOnly".
There's a setEnabled() method, but if you call setEnabled(false), it doesn't work.
I'm trying a workaround for this that should work. My idea is to replace the RichTextArea for this…

Mauricio Ubilla Carvajal
- 55
- 2
- 8
1
vote
2 answers
Display data in Rich Textarea on (ajax success) in javascript?
Here My Code:
And My JavaSript code is I…

King Developers
- 19
- 7
1
vote
1 answer
Vaadin 6 : RichTextArea and remove formatting
It's been a while that I've been reported about a problem on the software I'm on charge. I will try to explain it as much detailed as possible (Sorry if my english seems bad to you by the way ^^').
Context : The software has been developed as a Web…

Aynath
- 11
- 4
1
vote
0 answers
save rich text area content in same format in a word doc using XWPF
It can easily convert the normal text area content to word document using XWPF or to pdf using iTextpdf, but when I am trying to get data from rich text area, the content is not displaying in word document or pdf
I want to create a word document…

Lukman
- 101
- 1
- 1
- 9
1
vote
0 answers
sending text to textarea using selenium in python
I want to send some text over to textarea using selenium in python but I cannot find any way. I have tried every name, class and id to input text but they all report back error.however i am able to access all other buttons and text box but this…

Deepanshu Gupta
- 11
- 2
1
vote
2 answers
How to add TextChangeListener at RichTextArea in Vaadin
TextField searchField = new TextField();
searchField.addTextChangeListener(new TextChangeListener() {
@Override
public void textChange(TextChangeEvent event) {
updateCharecterLeft();
}
});
i want a RichTextArea instead of…

Ahmed Raaj
- 508
- 4
- 16
1
vote
1 answer
Vaadin - TextArea/RichTextArea with real-time text analyzing
I am working on a Vaadin (7) server-side application, and i need to use a TextArea or a RichTextArea that will analyze word-by-word the typed input, and will highlight words of a certain type, for example - dates and times.
My problem is that a…

poozmak
- 414
- 2
- 11
1
vote
0 answers
HTML generated for RichTextArea: How to limit no. of characters entered? maxlength?
I can see in Chrome/Mozilla/IE Develoer Tools that html generated for GWT's RichTextArea widget is something like this:

Harry
- 71
- 1
- 1
- 4
1
vote
1 answer
the_editor_content filter change the content of other textarea in wp admin in add/edit post section?
I have more then one text areas in wp admin in post add/edit section, i am trying to change the content of by default textarea of wp but when i execute the the_editor_content filter, it change the content of by default textarea but it also change…

Jay
- 103
- 2
- 10
1
vote
0 answers
java gwt richtextarea set line-height
I'm using the RichTextArea in my java gwt project. I was able to set a few parameters of the styling as follows:
IFrameElement fe = (IFrameElement) richTextArea.getElement().cast();
Style s = fe.getContentDocument().getBody().getStyle();…

wasp256
- 5,943
- 12
- 72
- 119
1
vote
1 answer
Vaadin RichTextArea content to PDF through FOP
We need to transform content of RichTextArea to pdf with all formatting, alignment, images etc. Is any simple way to do it? Or we have to write some kind of parser? We are using fop to transform xml to pdf.
Thanks. Best regards
dEVIANT

dEVIANT
- 249
- 2
- 4
- 14
0
votes
0 answers
I am working on search functionality (on a long text area field )in LWC component which is used in dynamic query
In my component I am using dynamic query to get the data accoridng to the search value in that I am facing issue while searching for long text area field which is "CPT_Codes__c" which has the character input limit of 4000. Currently I am using 2…
0
votes
0 answers
Vaadin 14 - RichTextEditor - format
I have been used Vaadin 8 to build applications for reporting purposes. I have used RichTextArea to keep formatted data input from user. There were possible to copy/paste a formatted table into RichTextArea.
I have migrated my application to Vaadin…

Adam Kowieski
- 11
- 3