/*
* 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.components.table;
import com.vaadin.data.Property.ValueChangeEvent;
import com.vaadin.data.Property.ValueChangeListener;
import com.vaadin.server.VaadinRequest;
import com.vaadin.tests.components.AbstractTestUI;
import com.vaadin.ui.Table;
import com.vaadin.ui.TextField;
import com.vaadin.ui.VerticalLayout;
import com.vaadin.ui.Window;
/**
* Test to see if Table appears to scroll up under an obscure set of conditions
* (Scrolled down, set to expand, selecting updates a TextField that precedes
* the Table in a VerticalLayout.) (#10106)
*
* @author Vaadin Ltd
*/
public class TableScrollUpOnSelect extends AbstractTestUI {
public TextField text = null;
@Override
protected void setup(VaadinRequest request) {
text = new TextField();
text.setImmediate(true);
final Table table = new Table(null);
table.addContainerProperty("value", Integer.class, 0);
for (int i = 0; i < 50; ++i) {
table.addItem(new Object[] { i }, i);
}
table.setSizeFull();
table.setSelectable(true);
table.setImmediate(true);
table.setEditable(false);
final VerticalLayout layout = new VerticalLayout();
table.addValueChangeListener(new ValueChangeListener() {
@Override
public void valueChange(ValueChangeEvent event) {
if (table.getValue() != null) {
text.setValue(table.getValue().toString());
}
}
});
table.setCurrentPageFirstItemIndex(49);
layout.setSizeFull();
layout.addComponent(text);
layout.addComponent(table);
layout.setExpandRatio(table, 1.0f);
Window window = new Window();
window.setHeight("600px");
window.setWidth("400px");
window.setModal(true);
window.setContent(layout);
getUI().addWindow(window);
}
@Override
protected String getTestDescription() {
return "Table scrolls up when selecting a row";
}
@Override
protected Integer getTicketNumber() {
return 13358;
}
}