Creating a document fragment using simple Javascript is very simple: var docFragment = document.createDocumentFragment(); .
However, in GWT, this does not seem to be accessible, although there is a DocumentFragment interface in the com.google.gwt.xml.client package, which does not seem to be applicable. Does anyone know a way using the above interface or creating a class using a simple JSNI method that creates documentFragment?
Thanks.
source share