]> source.dussan.org Git - vaadin-framework.git/commitdiff
Fix Grid trying to sort Container that is not Sortable (#16311)
authorTeemu Suo-Anttila <teemusa@vaadin.com>
Mon, 19 Jan 2015 12:47:22 +0000 (14:47 +0200)
committerTeemu Suo-Anttila <teemusa@vaadin.com>
Mon, 19 Jan 2015 12:59:51 +0000 (14:59 +0200)
Change-Id: I0159a068549d563f8d1b8378730a383f14700353

server/src/com/vaadin/ui/Grid.java
server/tests/src/com/vaadin/tests/server/component/grid/GridContainerNotSortableTest.java [new file with mode: 0644]

index bddbd7c731a4d38240920b903511ff01ab56beac..4a1952fe67e286c67d887bf8eb2a7c2c68f59946 100644 (file)
@@ -2858,10 +2858,8 @@ public class Grid extends AbstractComponent implements SelectionNotifier,
 
             sort(false);
         } else {
-
-            // If the new container is not sortable, we'll just re-set the sort
-            // order altogether.
-            clearSortOrder();
+            // Clear sorting order. Don't sort.
+            sortOrder.clear();
         }
 
         datasourceExtension = new RpcDataProviderExtension(container);
diff --git a/server/tests/src/com/vaadin/tests/server/component/grid/GridContainerNotSortableTest.java b/server/tests/src/com/vaadin/tests/server/component/grid/GridContainerNotSortableTest.java
new file mode 100644 (file)
index 0000000..38b1d09
--- /dev/null
@@ -0,0 +1,56 @@
+/*
+ * Copyright 2000-2014 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.server.component.grid;
+
+import java.util.Collection;
+import java.util.Collections;
+
+import org.junit.Test;
+
+import com.vaadin.data.Item;
+import com.vaadin.data.Property;
+import com.vaadin.data.util.AbstractInMemoryContainer;
+import com.vaadin.ui.Grid;
+
+public class GridContainerNotSortableTest {
+
+    @Test
+    public void testGridWithNotSortableContainer() {
+        new Grid(new AbstractInMemoryContainer<Object, Object, Item>() {
+
+            @Override
+            public Collection<?> getContainerPropertyIds() {
+                return Collections.EMPTY_LIST;
+            }
+
+            @Override
+            public Property getContainerProperty(Object itemId,
+                    Object propertyId) {
+                return null;
+            }
+
+            @Override
+            public Class<?> getType(Object propertyId) {
+                return null;
+            }
+
+            @Override
+            protected Item getUnfilteredItem(Object itemId) {
+                return null;
+            }
+        });
+    }
+}