Folks ,
I am trying to solve this native Java Script issue on IE but unable to .
Any thoughts on this .
what am trying to achieve here is add a widget into a text area .
In Firefox this seems to work fine .
//Element = new VerticalPanel().getElement();
private native void addNode(JSRange range, Element element)
/*-{
range.insertNode(element);
}-*/;
in IE this does not work fine , i have to fall back on something like
range.pasteHTML(string) . This is good in certain cases , but lets say if i
use certain GWT widgets like Anchor, CheckBox , the widget appears fine but
since this is a string i loose the events which are attached to the widgets
like ClickHandler etc. Any thoughts .
--
You received this message because you are subscribed to the Google Groups
"Google Web Toolkit" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/google-web-toolkit?hl=en.