SmartGWT version: 4.1p20141022
Browsers: IE 9 and 11
After moving up to version 4.1p20141022 we have noticed that the RichTextEditor behavior when using IE is not the same as it was on our previous versions of SmartGWT. When pressing enter to go to a new line the control is double spacing the result and adding additional space above the first line of text. Shift-enter will single space like a WYSIWYG would, but previously enter would on its own. When we try in Chrome the enter key produces single-spacing as well.
Also, the Home and End keys do not work for navigating to the beginning and end of a line. Ctrl-Home and Ctrl-End do still work and move the cursor to the beginning and end of the entire text. Again, these work in Chrome but not IE.
Finally, I found information in the forums regarding the border around the entry area in IE. This makes the cursor extremely difficult to find within the control. I saw a post that stated we could change the CSS to remove the border (for the "normal" class:
.normal {
outline-width: 0;
}
This is a much broader change than just the text area entry. Are there any other solutions, or are there any adverse conditions that this change would bring about?
All of these behaviors still appear to exist on the current showcase as well. Any insight would be appreciated.
Browsers: IE 9 and 11
After moving up to version 4.1p20141022 we have noticed that the RichTextEditor behavior when using IE is not the same as it was on our previous versions of SmartGWT. When pressing enter to go to a new line the control is double spacing the result and adding additional space above the first line of text. Shift-enter will single space like a WYSIWYG would, but previously enter would on its own. When we try in Chrome the enter key produces single-spacing as well.
Also, the Home and End keys do not work for navigating to the beginning and end of a line. Ctrl-Home and Ctrl-End do still work and move the cursor to the beginning and end of the entire text. Again, these work in Chrome but not IE.
Finally, I found information in the forums regarding the border around the entry area in IE. This makes the cursor extremely difficult to find within the control. I saw a post that stated we could change the CSS to remove the border (for the "normal" class:
.normal {
outline-width: 0;
}
This is a much broader change than just the text area entry. Are there any other solutions, or are there any adverse conditions that this change would bring about?
All of these behaviors still appear to exist on the current showcase as well. Any insight would be appreciated.
Comment