Browse Source

[merge from 6.7] Reverted #7607 fixes and removed the test for now because they cause the #8662 regression.

svn changeset:23566/svn branch:6.8
tags/7.0.0.alpha2
Automerge 12 years ago
parent
commit
c3e10ebbbc

+ 12
- 3
src/com/vaadin/terminal/gwt/client/ui/VScrollTable.java View File

@@ -2065,9 +2065,18 @@ public class VScrollTable extends FlowPanel implements Table, ScrollHandler,
isNewBody = false;

if (firstvisible > 0) {
scrollBodyPanel
.setScrollPosition(measureRowHeightOffset(firstvisible));
firstRowInViewPort = firstvisible;
// FIXME #7607
// Originally deferred due to Firefox oddities which should not
// occur any more. Currently deferring breaks Webkit scrolling with
// relative-height tables, but not deferring instead breaks tables
// with explicit page length.
Scheduler.get().scheduleDeferred(new Command() {
public void execute() {
scrollBodyPanel
.setScrollPosition(measureRowHeightOffset(firstvisible));
firstRowInViewPort = firstvisible;
}
});
}

if (enabled) {

+ 7
- 4
src/com/vaadin/ui/Table.java View File

@@ -1261,11 +1261,14 @@ public class Table extends AbstractSelect implements Action.Container,
maxIndex = 0;
}

// Assume that we want to scroll to the very bottom (so that the bottom
// row is completely visible even if (table height) / (row height) is
// not an integer.)
/*
* FIXME #7607 Take somehow into account the case where we want to
* scroll to the bottom so that the last row is completely visible even
* if (table height) / (row height) is not an integer. Reverted the
* original fix because of #8662 regression.
*/
if (newIndex > maxIndex) {
newIndex = maxIndex + 1;
newIndex = maxIndex;
}

// Refresh first item id

+ 0
- 62
tests/testbench/com/vaadin/tests/components/table/SetCurrentPageFirstItemId.html View File

@@ -1,62 +0,0 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head profile="http://selenium-ide.openqa.org/profiles/test-case">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="selenium.base" href="http://localhost:8067/" />
<title>SetCurrentPageFirstItemId</title>
</head>
<body>
<table cellpadding="1" cellspacing="1" border="1">
<thead>
<tr><td rowspan="1" colspan="3">SetCurrentPageFirstItemId</td></tr>
</thead><tbody>
<tr>
<td>open</td>
<td>/run/SetCurrentPageFirstItemId?restartApplication</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]</td>
<td></td>
</tr>
<tr>
<td>click</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[1]/VButton[0]/domChild[0]/domChild[0]</td>
<td></td>
</tr>
<tr>
<td>pause</td>
<td>300</td>
<td></td>
</tr>
<tr>
<td>assertText</td>
<td>vaadin=runSetCurrentPageFirstItemId::/VVerticalLayout[0]/ChildComponentContainer[0]/VScrollTable[0]/domChild[1]/domChild[0]/domChild[1]/domChild[0]/domChild[24]/domChild[0]/domChild[0]</td>
<td>24</td>
</tr>
<tr>
<td>screenCapture</td>
<td></td>
<td>scrolled-to-bottom</td>
</tr>

</tbody></table>
</body>
</html>

Loading…
Cancel
Save