I have found a problem that would stop us going live with our application. Basically when the Editor is hidden and then shown again the behaviour of the Bold and underline buttons are changed.
This can also be replicated on:
To reproduce:
- Enter text "The quick brown fox jumps over the lazy dog"
- Highlight some text and click the 'Bold' button
- The HTML will be as follows: "The q<strong>uic</strong>k brown fox jumps over the lazy dog"
- Hide the Editor and then show it again.
- Highlight some text and click the 'Bold' button
- The HTML will now be as follows: "The q<strong>uic</strong>k brown f<span style="font-weight: bold;">ox </span>jumps over the lazy dog"
This is the case with UsePhysicalFormattingTags = true or false.
I would like to use the <strong> tag all of the time for technical reasons.
Do you know a workaround for this issue?