You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
<br>What steps will reproduce the problem?</br>
1.Scroll down browser window (calendar height is bigger then browser window).
2.Drag and drop time block.
<br>What is the expected output? What do you see instead?</br>
Selected time aria is shifted.
<br>What version of the product are you using? On what operating system?</br>
0.9.3.1 under Linux OS.
<br>Description:</br>
In r431 specified that this problem was solved, but it still don't work well.
In 'gwt-cal-0.9.3.1.jar' changes (r431) are not applied.
After applying changes which was described in r431 problem still wasn't solved.
Problem was detected in:
<code>
public class DayView extends CalendarView {
...
private void timeBlockClick(int x, int y) {
...
NativeEvent evt = Document.get().createMouseDownEvent(1, 0, 0, x, y, false,
false, false, false, NativeEvent.BUTTON_LEFT);
...
}
...
}
</code>
After changing to:
<code>
public class DayView extends CalendarView {
...
private void timeBlockClick(int x, int y) {
...
NativeEvent evt = Document.get().createMouseDownEvent(1, 0, 0,
x - Window.getScrollLeft(),
y - Window.getScrollTop(), false,
false, false, false, NativeEvent.BUTTON_LEFT);
...
}
...
}
</code>
calendar works well.
Original issue reported on code.google.com by [email protected] on 1 Nov 2012 at 9:37
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 1 Nov 2012 at 9:37The text was updated successfully, but these errors were encountered: