Method Summary |
|
native public static Element | append(String parentId, String rawHtml) Creates new Dom element(s) and appends them to the parent element. |
native public static Element | append(String parentId, DomConfig config) Creates new Dom element(s) and appends them to the parent element. |
native public static Element | append(Element parent, String rawHtml) Creates new Dom element(s) and appends them to the parent element. |
native public static Element | append(Element parent, DomConfig config) Creates new Dom element(s) and appends them to the parent element. |
native public static Element | append(Element parent, Element child) Creates new Dom element(s) and appends them to the parent element. |
native public static void | applyStyles(Element element, String styles) Applies a style specification to an element. |
native public static Template | createTemplate(DomConfig config) Creates a new Template from the Dom config spec. |
native public static Element | insertAfter(String id, String rawHtml) Creates new Dom element(s) and inserts them after the specified element. |
native public static Element | insertAfter(String id, DomConfig config) Creates new Dom element(s) and inserts them after the specified element. |
native public static Element | insertAfter(Element elem, String rawHtml) Creates new Dom element(s) and inserts them after the specified element. |
native public static Element | insertAfter(Element elem, DomConfig config) Creates new Dom element(s) and inserts them after the specified element. |
native public static Element | insertAfter(Element elem, Element sibling) Creates new Dom element and inserts them after the specified element. |
native public static Element | insertBefore(String id, String rawHtml) Creates new Dom element and inserts them before the specified element. |
native public static Element | insertBefore(String id, DomConfig config) Creates new Dom element and inserts them before the specified element. |
native public static Element | insertBefore(Element elem, String rawHtml) Creates new Dom element and inserts them before the specified element. |
native public static Element | insertBefore(Element elem, DomConfig config) Creates new Dom element and inserts them before the specified element. |
native public static Element | insertBefore(Element elem, Element sibling) Creates new Dom element and inserts them before the specified element. |
native public static Element | insertFirst(String parentId, String rawHtml) Creates new Dom element(s) and inserts them as the first child of the parent element. |
native public static Element | insertFirst(String parentId, DomConfig config) Creates new Dom element(s) and inserts them as the first child of the parent element. |
native public static Element | insertFirst(Element parent, String rawHtml) Creates new Dom element(s) and inserts them as the first child of the parent element. |
native public static Element | insertFirst(Element parent, DomConfig config) Creates new Dom element(s) and inserts them as the first child of the parent element. |
native public static Element | insertFirst(Element parent, Element child) Creates new Dom element(s) and inserts them as the first child of the parent element. |
native public static String | markup(DomConfig config) Returns the markup for the passed Element config. |
native public static Element | overwrite(String oldId, String newRawHtml) Creates new Dom element(s) and overwrites the contents of the old element with them. |
native public static Element | overwrite(String oldId, DomConfig config) Creates new Dom element(s) and overwrites the contents of the old element with them. |
native public static Element | overwrite(Element oldElem, String newRawHtml) Creates new Dom element(s) and overwrites the contents of the old element with them. |
native public static Element | overwrite(Element oldElem, DomConfig config) Creates new Dom element(s) and overwrites the contents of the old element with them. |
native public static Element | overwrite(Element oldElem, Element newElem) Creates new Dom element(s) and overwrites the contents of the old element with them. |