ref #8282: move doubtful checkbox below publish checkbox
authorKatja Luther <k.luther@bgbm.org>
Fri, 23 Aug 2019 07:51:08 +0000 (09:51 +0200)
committerKatja Luther <k.luther@bgbm.org>
Fri, 23 Aug 2019 07:51:08 +0000 (09:51 +0200)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/section/classification/TaxonNodeDetailElement.java

index 11a3d8c94332cf1a7d393c70dd76517db17bb426..bd54698c7e9f1798abe2b1d7300fb86a2fbfd93c 100644 (file)
@@ -188,13 +188,16 @@ public class TaxonNodeDetailElement extends AbstractCdmDetailElement<TaxonNode>
         }
         parentTreeNode = entity.getParent();
 
-        checkbox_placementDoubtful = formFactory.createCheckbox(formElement,
-                "Placement is doubtful", entity.isDoubtful(), style);
+
 
         checkbox_publish = formFactory.createCheckbox(formElement,
                            "Taxon is published", entity.getTaxon().isPublish(), style);
 
-               checkbox_publish.setEnabled(isCreateNew());
+        checkbox_publish.setEnabled(isCreateNew());
+
+        checkbox_placementDoubtful = formFactory.createCheckbox(formElement,
+                "Placement is doubtful", entity.isDoubtful(), style);
+
 
                if(isCreateNew()){
                   setParentTreeNode(entity.getParent());