summaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
...
| | * | Revert "Drag image for text-area should contain text of text-area (#13557)"Teemu Suo-Anttila2014-04-143-85/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This reverts commit f227f0c1068f17e5491bd399d9f5bde16a0c8272. Synchronising content after IE wraps the given element into a table with a body causes a NullPointerException on client side. This patch also contains new API and should be targeted to master branch. Change-Id: Ia19acd9fa31c7b67507bf797a2bab7c28ea37b4b
| | * | Introduce a drag threshold for Drag and Drop (#13381)Teemu Suo-Anttila2014-04-111-37/+37
| | | | | | | | | | | | | | | | | | | | | | | | Based on partial fix by Fabian Lange. Change-Id: I1a18c6ea105d87496b196b93e701aaccb987b3e7
| | * | Drag image for text-area should contain text of text-area (#13557).Denis Anisimov2014-04-103-1/+85
| | | | | | | | | | | | | | | | Change-Id: Ief653c3f15d18fdd076f0fb80f8a91ae429a54d3
| * | | Merge commit '591996b' into 7.2Sauli Tähkäpää2014-04-162-8/+11
| |\| | | | | | | | | | | | | | | | | | | | | | | | | | Conflicts: build.properties Change-Id: Ie3cf9bd0af8aba7debf4626d2db77afea37e7cb3
| * | | Support for pointer events (#13549)Matti Tahvonen2014-04-1515-1/+804
| | | | | | | | | | | | | | | | | | | | | | | | Added support for pointer events using the “extensible event mechanism” in GWT 2.6 Change-Id: Idac62114fe26536e62609edc944ff9dfef886e1c
| * | | Update the tab caption widths when necessary (#13402)Jonatan Kronqvist2014-04-151-14/+28
| | | | | | | | | | | | | | | | Change-Id: I9c319625da3e4cfc5b49c339f54393f7e12effed
* | | | Fast-forward DateField only with left mouse button (#8012)Teemu Pöntelin2014-05-041-2/+4
| | | | | | | | | | | | | | | | Change-Id: Ib21c650feeed1ca584b2aeefb6c694e73e12b90d
* | | | Merge changes from origin/7.2Artur Signell2014-05-022-8/+11
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | 15e24ec Fix too wide Table columns while sorting from init (#13517) a86798c Fix ScreenshotTB3Test removing reference images Change-Id: Iec1c2caceb99a6c8cfad9a0911d4a9cd7a23db36
| * | | Fix too wide Table columns while sorting from init (#13517)Teemu Suo-Anttila2014-04-032-8/+11
| | | | | | | | | | | | | | | | Change-Id: I2c356c539541381e744c8960d00aa3e018beb67d
* | | | Set explicit left alignment instead of removing text-align style (#13399).Denis Anisimov2014-04-301-27/+18
| | | | | | | | | | | | | | | | Change-Id: I3407555739ff443055e2e61aa14327d44a65cd8e
* | | | Prevent scroll position reset on GridLayout hierarchy change (#13386)Johannes Dahlström2014-04-292-2/+41
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | State change handling by default clears measured size if the size is set to undefined; this would cause GridLayout to shrink to zero size because its child cells have position: absolute. The layout phase recomputes the size, but in some cases the browser reflows first, affecting the scroll position of the layout parent. This patch prevents GridLayout from clearing once-computed sizes during state change. Change-Id: Id6e066c3ea360083d16d3fcc5c6d7d4bb6cea8b7
* | | | Avoid client side exception on DnD for empty table (#13655).Denis Anisimov2014-04-281-2/+11
| | | | | | | | | | | | | | | | Change-Id: I71c18e87760ecbff34cfe215f56390fd75f3e55c
* | | | Fix ComboBox cleared suggestion popup on ItemSetChange (#13635)Teemu Suo-Anttila2014-04-281-3/+8
| | | | | | | | | | | | | | | | Change-Id: I77285e17819daf1b8328a8aea6d62a6b6b53510c
* | | | Fix Table width calculation when adding the first item (#13592)Juuso Valli2014-04-281-1/+1
| | | | | | | | | | | | | | | | Change-Id: I328dd83cac0cc6ba08fa32a1227f10ece9b52d6f
* | | | Fix ComboBox popup scrolling when paging disabled (#13488)mtzukanov2014-04-251-4/+5
| | | | | | | | | | | | | | | | | | | | | | | | Added pagelength == 0 conditions on scroll and hasNextPage. Change-Id: I42c0eb56d42cc54ff57a6bc6b9eee2f6734315bb
* | | | Fix TextArea with enter keyboard shortcut (#12424)Markus Koivisto2014-04-251-0/+24
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When a keyboardshortcut has been added to anywhere on the page, the previous behaviour would cause the keyboardshortcut event to be processeed before the newline was processed. The end result was that newlines were never added when typing in the TextArea. Keyboard shortcuts operate on KeyDown events. By adding a listener for these events and stopping their propagation when the ENTER key is pressed, this unwanted behaviour can be averted, and the user can enter multi-line text in a TextArea even when Enter is used as a keyboard shortcut. Obviously, this means that the keyboard shortcut will not work as long as the TextArea widget has focus. This is the new intended behaviour. Change-Id: Ied438acb8589df498e5634271e486517bf6ac41e
* | | | Apply layout after remove tab in Accordion (#11366, #13423)Denis Anisimov2014-04-251-0/+1
| | | | | | | | | | | | | | | | Change-Id: Ia56729d2d533697bea78bdb1de6b2710e166893a
* | | | Use getChildComponents in PopupView instead of getChildren (#13503)Denis Anisimov2014-04-161-4/+2
| | | | | | | | | | | | | | | | Change-Id: Ifd155376804e2403c55a115186df2b2c1c673334
* | | | Remove redundant toggling of calendarToggle enabled state (#13124)Leif Åstrand2014-04-151-3/+0
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | With the original changes for #13124 in how calendarToggle is enabled and disabled, the toggling performed by the connector is no longer needed and can be removed. Change-Id: I74fc1c5b2b8768f42f344478c5dad24eef11d8e6
* | | | Drag image for text-area should contain text of text-area (#13557).Denis Anisimov2014-04-153-1/+83
| | | | | | | | | | | | | | | | Change-Id: I4c3da88e80b5516bc8f6dc0eb8020ca4dcdf43fc
* | | | Disable/enable text field for DateField on setEnable() method (#13124).Denis Anisimov2014-04-152-0/+7
| | | | | | | | | | | | | | | | Change-Id: I49222e44f75ff228219042360f1764077da1016c
* | | | Merge changes from origin/7.2Build Agent2014-04-141-1/+2
|\ \ \ \ | | |/ / | |/| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | e697d8b Merge "Merge branch 'master' into 7.2" into 7.2 4879639 Redo Push reconnect tests. 8314e3c Downgrade Atmosphere client jQuery 2.0.3 -> 1.11.0. (#13374) dab3e63 Disable PopupView Animations (#13593) 3ba1e69 Update to Atmosphere js 2.1.5.vaadin2 (#13578) Change-Id: I8205b1d1debeb7c2fd6585021ea76a77abd8403b
| * | | Disable PopupView Animations (#13593)Teemu Suo-Anttila2014-04-141-1/+2
| | | | | | | | | | | | | | | | Change-Id: I450d63abe4e7c4e9fd279fe3a6f6262e2945904b
| * | | Merge "Merge branch 'master' into 7.2" into 7.2Artur Signell2014-04-142-2/+36
| |\ \ \
| | * \ \ Merge branch 'master' into 7.2Jonatan Kronqvist2014-04-142-2/+36
| | |\ \ \ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 72d0aa0 Update Window Javadoc based on 7.2 API review changes ee203f5 Apply abstract ordered layout settings for replaced component (#13568) 02998d8 Updated Window API based on 7.2 API review cd94b21 Discourage use of setNeedsLayout while a layout is running (#13542) f374bc7 Make ComboBox always immediate (#4054) aec102a Update 3rd party license information (#13449) 013d32d Remove old widget from tab content on replace (#12931). 3d0ff32 Prevent duplicate detach() calls with push (#13261) a452bad Refactor VaadinPortletRequest extending. (#13551) 55dfd29 Prevent duplicate session destroy events (#12612) 2067d4e Don't allocate unnecessary memory for empty array of Objects in MethodProperty (#10446). 00a9af5 Refactor PushConfigurationTest. Merge: no Change-Id: I6563769a77f91a68cfeadcb3306dd71fe431863c
* | | | | | Merge changes from origin/7.2Artur Signell2014-04-143-21/+32
|\| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | d2e24fe Update some APIs based on the 7.2 API review comments 758f26b Fix NPE when removing tabsheet (#13402) Change-Id: Ic23793738c866d3b6d1a376f37dc4a56f72b8e43
| * | | | | Fix NPE when removing tabsheet (#13402)Artur Signell2014-04-141-1/+5
| |/ / / / | | | | | | | | | | | | | | | Change-Id: Idc78fc1bc6380d7bfada99f1efe2484b04ce3c74
| * | | | Update some APIs based on the 7.2 API review commentsJonatan Kronqvist2014-04-142-20/+27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * NotificationConfiguration "helpers" removed from Notification * NotificationConfiguration methods accept Type instead of style (String) * Tab.setIconAltText -> Tab.setIconAlternateText * Remove the two new TabSheet.addTab() methods * UI.reinit() -> UI.refresh() Change-Id: I97488e7c6de8cfacc591450d69c821b2973b8707
* | | | | Fix copyright headers not passing the validationLeif Åstrand2014-04-142-15/+14
| |/ / / |/| | | | | | | | | | | | | | | | | | | | | | | Also let through some other formatting changes that Eclipse insisted on when saving the touched files. Change-Id: I319de35c4862555b010d6da6d4a5e096619e2c34
* | | | Discourage use of setNeedsLayout while a layout is running (#13542)Leif Åstrand2014-04-141-2/+35
| |_|/ |/| | | | | | | | Change-Id: Ia4831db39528061f4ac4b98b861b8030a261cf9a
* | | Remove old widget from tab content on replace (#12931).Denis Anisimov2014-04-101-0/+1
|/ / | | | | | | Change-Id: I85badfcca18e129b20ab6c5c2db0b845c8c2ea5b
* | Don't use WindowConnector as a content connector in UI (#13127).Denis Anisimov2014-04-091-0/+12
| | | | | | | | Change-Id: I17b963c49ba2d2de05341cf60dca0d65187314b0
* | Start drag only when mouse left button is pressed (#9814).Denis Anisimov2014-04-081-0/+1
| | | | | | | | Change-Id: Ibe9734185af0e6ba4399b20f2f1bb55a3207abd5
* | Slider handle is now correctly updated on resize (#12550)Teemu Pöntelin2014-04-082-3/+21
| | | | | | | | | | | | | | | | | | | | | | | | Fixed the issue by replacing the legacy ContainerResizedListener with adding (and removing) an ElementResizeListener to the LayoutManager. Notice also that after this change there are no longer implementations of the deprecated ContainerResizedListener in the framework codebase. Change-Id: Ib984953d8b53b9535d39ae70166c17ffd5b4103b
* | Support for middle left/right positions in Notification (#12931).Denis Anisimov2014-04-081-0/+9
| | | | | | | | Change-Id: Iac00191ace5d55f8b054f8b66d1802a788d368c2
* | Update Accordion and TabSheet to use Vaadin 7 style. (#13402).Felype Santiago Ferreira2014-04-086-308/+472
| | | | | | | | | | | | | | This change also adds subpart support for TabSheet and converts a test to TB3. Change-Id: I23b6c81686ea6587470d8019e89a85149ec0b068
* | Change push default fallback to long polling (#13409)Artur Signell2014-04-041-1/+1
| | | | | | | | Change-Id: Ie9f4ea98a6bf4a4ec45118a46e58d15d9fe3b36f
* | Fix typo in @OnStateChange javadoc (#12958)Leif Åstrand2014-04-041-1/+1
| | | | | | | | Change-Id: I37f40eea6185b682e909da5b3f4c755b20a688e5
* | Mousedown - mouseout - mouseover - mouseup now counts a click (#13550)Artur Signell2014-04-041-5/+18
| | | | | | | | Change-Id: Id1f58b1ac6c207cec3357bcd96e1eb8d8de256a0
* | Support font icons in ComboBox (#13376)Johannes Dahlström2014-04-031-32/+39
| | | | | | | | Change-Id: Idb35b8116c28824c8ced9b8f230e06ba8e7ecaaf
* | Trigger action/submenu on SPACE key along with ENTER (#12525).Denis Anisimov2014-04-021-1/+17
| | | | | | | | Change-Id: I1548cc90e133f90c94fc33c50fb06a8aff353826
* | Implement @OnStateChange (#12958)Leif Åstrand2014-04-015-48/+293
| | | | | | Change-Id: I8ea2b781fab42458bf55a751c1229e391365e965
* | Make Invoker support non-public methods (#12959)Leif Åstrand2014-04-011-0/+53
| | | | | | | | Change-Id: Ie449489f3c9222bbe4a4221841c4ebc20693f969
* | Merge changes from origin/7.1Build Agent2014-03-311-1/+1
|\| | | | | | | | | | | d0bc54b Prevent popup open when datafield is disabled (#13508). Change-Id: I3f15fa2d0774dfa0c91312d79822be94afcb0d34
| * Prevent popup open when datafield is disabled (#13508).Denis Anisimov2014-03-311-1/+1
| | | | | | | | Change-Id: I5bb3ec24ad15d832a43998a4cee49a61ae81562e
* | VDateField shoud implement HasEnabled (#13124).Denis Anisimov2014-03-311-1/+4
| | | | | | | | Change-Id: I5b8cd173f3b4646240c224090843583175eca93d
* | Bring window to front on window header click (#13445).Denis Anisimov2014-03-311-4/+11
| | | | | | | | Change-Id: I3322dcff0199125f49cc48afdc467516b420e845
* | Show caption for PopupView (#10618).Denis Anisimov2014-03-311-5/+0
| | | | | | | | Change-Id: I00ae9444b5b7720ad19473ea3fe05ed764c95bf9
* | Fix multiple icons in caption (#13516)Teemu Suo-Anttila2014-03-311-1/+1
| | | | | | | | Change-Id: I484d53df984e21a7dfba63901aaa1a0e163ec52c
* | Merge changes from origin/7.1Build Agent2014-03-311-7/+2
|\| | | | | | | | | | | 3612ce1 Fixed aria-disabled attribute value on DateField button (#13463) Change-Id: I888e9bed47ae2a540161786791d546b2fd0f85cf