Well, I did this
if(event.getCharCode()=='*')
{
rta.setHTML("<input type=radio name=name value=1>");
}
it creates a radiobutton which is clickable in Chrome, but it isn't in Firefox and IE.
rta is my RichTextArea, is declared as: private final RichTextArea rta = new RichTextArea();
I got rta formatters: final BasicFormatter bf = rta.getBasicFormatter();
final ExtendedFormatter ef = rta.getExtendedFormatter();
but neither bf nor ef provide me the setHTML method in order to create a radiobutton.
Please help me with this, I have spent a week on that and I haven't done it yet.
Thank you in advance!!!