public void onConnectorHierarchyChange(
ConnectorHierarchyChangeEvent event) {
Profiler.enter("CssLayoutConnector.onConnectorHierarchyChange");
- Profiler.enter(
- "CssLayoutConnector.onConnectorHierarchyChange add children");
- int index = 0;
- for (ComponentConnector child : getChildComponents()) {
- VCaption childCaption = childIdToCaption
- .get(child.getConnectorId());
- if (childCaption != null) {
- getWidget().addOrMove(childCaption, index++);
- }
- getWidget().addOrMove(child.getWidget(), index++);
- }
- Profiler.leave(
- "CssLayoutConnector.onConnectorHierarchyChange add children");
// Detach old child widgets and possibly their caption
Profiler.enter(
}
Profiler.leave(
"CssLayoutConnector.onConnectorHierarchyChange remove old children");
+
+ Profiler.enter(
+ "CssLayoutConnector.onConnectorHierarchyChange add children");
+ int index = 0;
+ for (ComponentConnector child : getChildComponents()) {
+ VCaption childCaption = childIdToCaption
+ .get(child.getConnectorId());
+ if (childCaption != null) {
+ getWidget().addOrMove(childCaption, index++);
+ }
+ getWidget().addOrMove(child.getWidget(), index++);
+ }
+ Profiler.leave(
+ "CssLayoutConnector.onConnectorHierarchyChange add children");
+
Profiler.leave("CssLayoutConnector.onConnectorHierarchyChange");
}
import com.vaadin.tests.components.TestBase;
import com.vaadin.ui.Button;
-import com.vaadin.ui.Button.ClickEvent;
-import com.vaadin.ui.Button.ClickListener;
import com.vaadin.ui.CssLayout;
-import com.vaadin.v7.ui.TextField;
+import com.vaadin.ui.TextField;
@SuppressWarnings("serial")
public class CssLayoutRemoveComponent extends TestBase {
protected void setup() {
final CssLayout layout = new CssLayout();
final TextField tf = new TextField("Caption1");
- Button b = new Button("Remove field ", new ClickListener() {
-
- @Override
- public void buttonClick(ClickEvent event) {
- layout.removeComponent(tf);
- }
-
- });
+ Button b = new Button("Remove field ",
+ event -> layout.removeComponent(tf));
layout.addComponent(tf);
layout.addComponent(b);
layout.addComponent(new TextField("Caption2"));
- layout.addComponent(new TextField("Caption3"));
+ TextField tf3 = new TextField("Caption3");
+ layout.addComponent(tf3);
+
+ tf3.focus();
addComponent(layout);
}
--- /dev/null
+/*
+ * Copyright 2000-2016 Vaadin Ltd.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License"); you may not
+ * use this file except in compliance with the License. You may obtain a copy of
+ * the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+ * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+ * License for the specific language governing permissions and limitations under
+ * the License.
+ */
+package com.vaadin.tests.layouts;
+
+import org.junit.Assert;
+import org.junit.Test;
+
+import com.vaadin.testbench.elements.ButtonElement;
+import com.vaadin.testbench.elements.TextFieldElement;
+import com.vaadin.tests.tb3.SingleBrowserTestPhantomJS2;
+
+public class CssLayoutRemoveComponentTest extends SingleBrowserTestPhantomJS2 {
+ @Test
+ public void testRemoveOnlyNecessaryComponentsFromDom() {
+ openTestURL();
+
+ String script = "document.mutationEventCount = 0;"
+ + "var observer = new MutationObserver(function(mutations){"
+ + "mutations.forEach(function(mutation) { document.mutationEventCount += mutation.removedNodes.length; });"
+ + "});"
+ + "observer.observe(arguments[0].parentNode, { childList: true });";
+
+ executeScript(script,
+ $(TextFieldElement.class).caption("Caption1").first());
+
+ $(ButtonElement.class).first().click();
+
+ Long mutationEvents = (Long) executeScript(
+ "return document.mutationEventCount;");
+ Assert.assertEquals(
+ "Parent should only have two mutation events (remove field and its caption)",
+ 2, mutationEvents.intValue());
+ }
+}