List of usage examples for com.google.gwt.dom.client FormElement TAG
String TAG
To view the source code for com.google.gwt.dom.client FormElement TAG.
Click Source Link
From source file:org.kie.appformer.formmodeler.rendering.client.view.validation.FormViewValidator.java
License:Apache License
protected Element findFormGroup(String groupId, Element element) { if (element.getTagName().equals(FormElement.TAG)) { return null; }/* w w w . ja v a 2 s. c o m*/ if (element.getId().equals(groupId)) { return element; } return findFormGroup(groupId, element.getParentElement()); }
From source file:org.kie.workbench.common.forms.dynamic.client.rendering.DefaultDynamicFormField.java
License:Apache License
private Element findFormGroup(String groupId, Element element) { if (element.getTagName().equals(FormElement.TAG)) { return null; }//from w w w .ja v a2 s . com if (element.getId().equals(groupId)) { return element; } return findFormGroup(groupId, element.getParentElement()); }