aboutsummaryrefslogtreecommitdiffstats
path: root/client
Commit message (Collapse)AuthorAgeFilesLines
* Clicking on slider makes handler move (#11519)Anastasia Smirnova2019-04-102-8/+22
| | | | | | | | | | | | | | * Clicking on slider makes handler move Fixes #1496 * Introducing control over clicking behaviour - User will have to enable process of the click event on handle calling `slider.setEnableClickHandler(true);` - Clean-up the handler logic in VSlider.java - Renaming the property to `updateValueOnClick` - Added JavaDocs - Fixing tests
* Fixing autocompletion issue with ComboBox on newer Chrome versions (#11472)Tatu Lund2019-04-101-1/+6
| | | | | | | | | | | | | | | | | | | | | | * Fixing autocompletion issue with ComboBox on newer Chrome versions Newer Chrome versions do not work with random number hack to prevent auto completion, but it finally supports autocomplete=off. * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437 * Merge branch 'master' into fix11437
* Use Enter and Space keys to fire Window header buttons (#11517) (#11534)KatriHaapalinna2019-04-082-5/+32
| | | | | | | | | | * Fixes 11517. Use ENTER and SPACE keys as shortcuts for header buttons * Merge branch 'master' into fix-11517 * Increase sleep time for test failing in validation * Merge branch 'master' into fix-11517
* Read-only combobox should not handle PASTE event (#11529)Anastasia Smirnova2019-04-041-2/+2
| | | Fixes 11528
* setCaption of Panel did not honor setCaptionAsHtml (#11523)Tatu Lund2019-04-022-4/+8
| | | | Verify that correct mode(HTML/TEXT) of caption is set for the Panel Fixes #11521
* Support Firefox 65+ key down event behavior (#11503)Yuriy Artamonov2019-03-292-6/+11
| | | Fixes #11502
* Make improve of caching for hierarchical data optional (#11501)Klaudeta2019-03-211-24/+63
| | | | | Make improve of caching for hierarchical data optional Fixes #11477
* Remove redundant check for for Firefox (#11471)Anastasia Smirnova2019-03-061-10/+1
| | | | | | | | | | | * Add Test file * Remove redundant check for for Firefox It seems that in older versions of Firefox (at least, older than 45) the KeyPress event should be used instead of KeyDownHandler. At some point (works already on 58 version, the current one is 65) the issue was resolved and starting from Firefox 65 this hook prevents from navigating in the pop-up via keyboard. Simply removing additional logic makes navigating in both DateField and InlineDateField possible Fixes #11465
* Ensure pop-up is not opened, when tabbing out fast from Combobox (#11436)Anastasia Smirnova2019-02-251-4/+9
| | | | | | | | | | | Checking that no prior Combobox behavior is broken * Cleaning-up the code Adding UI test * Adding TestBench test
* Fix #11369 (#11403)Maciej Przepióra2019-01-171-0/+17
| | | Clear contents of iframe clone that is in a Window so that when it's reattached to DOM we don't get 404
* Update snapshot to 8.8-snapshot (#11397)Sun Zhe2018-12-281-1/+1
|
* Update release note and since tag (#11386)Sun Zhe2018-12-202-8/+12
| | | | * Some formatting changes
* Checkbox allow customizing of input and label classNames. (#11372)Knoobie2018-12-182-3/+58
| | | | | | | | | * add client side integration for custom styles for checkbox.label and checkbox.input * add server side integration for checkbox element styling * add server side tests * add client side test
* Improve VMenuBar click handling logic (#11356)Anastasia Smirnova2018-12-172-93/+117
| | | | | | | | | | | | | | | * Improve VMenuBar click handling logic During `updateFromUIDL` inside MenuBarConnector we empty and re-instantiate the components of MenuBar. When we are modifying the Menubar from the BlurEventListener of another component, we ,by this, remove widgets, therefore clickEvent is not fired and the action of the MenuItem is not proceed as a result. (The BlurEvent is fired before the click event in the chain of events. ) To improve the situation, we catch onMouseDown event , which is fired before BlurEvent,by assigning mouseDown flag to true. Then if no click event has yet happened, we delay the execution of update inside `updateFromUIDL` by default 500 ms. Then if click event occurs, it proceeds normally. The time can be increased/decreased using setter. There is no delay, if we are clicking on the MenuBar as usual or no Blur listener is set. This change allows setting descriptions * Remove accidentally committed comment * Don't update the state on the getDelayMs call
* Prevent IndexOutOfBoundException in VMenuBar.CustomMenuItem (#11285)Jonni Madekivi2018-12-171-0/+1
| | | | | | | | * Fixes #10814 * Add missing tests Fixes #11374
* Move onClick logic to the Connector (#11367)Anastasia Smirnova2018-12-142-24/+25
| | | | | | | | | | * Move onClick logic to the Connector Move onClick event handling from 'VNativeButton' to NativeButtonConnector. Now works as for regular button. Also, adding propagation of the `enabled` value to the state on disableOnClick being true Fixes https://github.com/vaadin/framework/issues/11188
* Apply missing v-readonly style to CheckBoxGroup, when component is readOnly ↵Anastasia Smirnova2018-12-131-1/+14
| | | | | | | | | | | | | | | | (#11370) Setting read-only state to CheckBoxGroup should disable adding clicking effect. Missing v-readonly style is added to every CheckBox in the component, if it's set to read-only. Fixes: https://github.com/vaadin/framework/issues/11113 * Add file missed from initial commit * Verifying that option is enabled Some of the options might be disabled on there own. Verify that option is not disabled, before removing disabled styles. * Add missing test file
* Complete the empty since tag (#11371)8.7.0.alpha1Sun Zhe2018-12-133-4/+4
| | | | * Complete the empty since tag
* Add more context information to criteriaScript in GridDropTargetConnector ↵vt5122018-12-052-6/+39
| | | | | | | | | | | | | | | | | | | | | (#11321) * Add more context information to criteriaScript in GridDropTargetConnector When using drag and drop in Grids and TreeGrids a criteriaScript can be specified. However, this criteriaScript only gets an event as input parameter. It would be helpful if the criteriaScript would get more information: - the DropLocation - the targetElement which is used as a base for the DropLocation This change provides a protected method in DropTargetExtensionConnector which decides, if the drop is allowed by the criteriaScript. This method is overriden in GridDropTargetConnector to provide the both parameters dropLocation and targetElement. * add Test UI for criteriaScript with targetElement and dropLocation * add some description for the Test UI
* Improvements to updating spacer indexes. (#11353)Anna Koskinen2018-12-051-4/+13
| | | | | | | | * Improvements to updating spacer indexes. - When details rows are moved down, indexes need to be updated from bottom up. Fixes #11352
* Improvement to details row height handling. (#11351)Anna Koskinen2018-12-041-2/+6
| | | | | | - When rows are added, details row heights need to be taken into account in positioning. Fixes #11348
* Revert "Update ComboBox internal state on new item added (#11094)" (#11331)Sun Zhe2018-11-271-25/+10
| | | | | | | | * Revert "Update ComboBox internal state on new item added (#11094)" This reverts commit 56ce91c6160a252ddcd952bca6eb7037120ebf59. * Add tests to verify the issue
* Fix to use correct spacer index and existing helper method. (#11328)Anna Koskinen2018-11-231-5/+1
| | | | | | * Fix to use correct spacer index and existing helper method. Fixes #11325
* Fix for setting default row height for a Grid with details row(s) open. (#11326)Anna Koskinen2018-11-211-1/+10
| | | | | | | | | * Fix for setting default row height for a Grid with details row(s) open. - Details row(s) should be taken into account when the rows are re-positioned after getting new heights. Fixes #11325
* Code formatting (#11278)Sun Zhe2018-11-062-16/+19
|
* Update time in ReadOnly state of DateTimeCalendar (#11269)Anastasia Smirnova2018-10-241-3/+3
| | | | | Fix https://github.com/vaadin/framework/issues/11268 ```buildTime()``` function re-initializes ListBoxes for hours,minutes and seconds values. We need to set correct values in those ListBoxes, before assigning value to the labels displayed instead of those ListBoxes in ReadOnly state, as , otherwise, the selectedItemIndex returns 0.
* Display the caption of the Empty selection in NativeSelect (#11191)Anastasia Smirnova2018-10-182-1/+29
| | | | | | | | | | | | | | | | * Fixes #10937 - Previously if selected value is null, then index is set to -1; in current implementation if value is null and emptySelection is allowed then set the index to 0. (The position for the empty selection) - Also, if changing the allowEmptySelection on the fly, ensure, that either index is to-reset to -1 by setting the selected value to null on the client-side (the value before was null) or preserve the value(value was different than empty). * Change the test case Since in this pr the behaviour of the NS is changed, therefore old test need to be adjusted. Change: setting null as value will select empty selection. Before that nothing would be selected and value will be cleared. Behaviour change in PR: Allow selecting null as value
* Rebuild calendar pop-up on readOnly state change (#11249)Anastasia Smirnova2018-10-172-1/+14
| | | | | | * Rebuild calendar pop-up on readOnly state change Fixes https://github.com/vaadin/framework/issues/6565
* Format the code (#11244)Sun Zhe2018-10-151-1/+1
|
* Revert change to fix issue on removing Grid with components (#11224)Sun Zhe2018-10-121-28/+18
| | | | | | | | | | * Test case for removing Grid with components * This reverts commit b2745dc14f17b510df7321ab3f6285ed317da3b3. Add test case to address the issue with removing gird with components; Current situation: the grid cannot be removed and client-side throw an error. fixes: Revert the corresponding change, as it didn't address any issue which was fixed.
* Updates to scrolled TabSheet resize logic and Valo right-alignment. (#11133)Anna Koskinen2018-10-101-12/+127
| | | | | | | | | | - When a TabSheet is scrolled to an end and then resized bigger, more tabs should appear to the left. - When a TabSheet is right-aligned in Valo and scrolled to the end, last tab shouldn't be partially hidden behind the scroller buttons. - Shouldn't allow attempts to scroll into directions where there is nothing left to scroll to, even if the current tab isn't fully visible. Fixes #807
* Run formatter to the code (#11227)Sun Zhe2018-10-091-2/+2
|
* Fixes to displaying Grid in a detail row. (#11147)Anna Koskinen2018-10-083-4/+37
| | | | | | | | - Multiple headers shouldn't stack behind each other. - Body rows shouldn't get stuck to default row height. - Compatibility version's hidable row selector shouldn't try to calculate row heights based on rows that haven't been added to DOM yet. Fixes #7674
* Replaced Grid's internal size calculation fix with an indexing fix. (#11154)Anna Koskinen2018-10-012-18/+5
| | | | | | - More lightweight, and fixes things for any custom implementations of Escalator as well. Fixes #11044
* Update master to 8.7-SNAPSHOT (#11208)Sun Zhe2018-09-271-1/+1
|
* Update ComboBox internal state on new item added (#11094)8.6.0.beta1Teemu Suo-Anttila2018-09-261-12/+27
|
* Fix/focus inside window chrome (#11142)Mehdi Javan2018-09-191-37/+48
| | | | Fixes #11087
* Fixing RadioButtonGroup exception in Window (#11181)Mehdi Javan2018-09-171-1/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * discardStaleCacheEntries is moved to a proper place before updating indexToRowMap and keyToIndexMap maps. In its previous place, it cleared the data that was just put in the maps. Fixes #11143 * Adding test * Removing extra annotations * Updating chrome version to 69 in tests (#11182) * Updating Chrome version to 69 * Updating screenshots taken in Chrome 69 * Fixing screenshots * Fixing screenshots * Adding some wait commands to tests * Fixing screenshots * Revert: Fixing screenshots * More screenshots * - Adding wait commands to make sure the transitions end before screenshot - Fixing a screenshot * Correcting a mistake of using wait instead of sleep * Fixing more screenshots * Increasing the height of ContextMenu (Because of limitation of new Chrome 69 in terms of minimum window height, ContextMenu size can't be tested with a small height.)
* Fix handler creation to happen on init (#11172)Teemu Suo-Anttila2018-09-071-18/+28
| | | | Fix handler creation to happen on init
* Ensure that HeaderRow is not null in Grid (#11165)Anastasia Smirnova2018-09-071-0/+2
| | | | | Ensure that HeaderRow is not null in Grid Fixes #10485
* Fix handling of hidden Components in Grid(#10367)Marco Collovati2018-09-071-4/+59
|
* Set correct GWT .dtd definition (#11110)Ilia Motornyi2018-08-132-2/+2
|
* Fix Escalator to properly reset height by rows (#11090)Mehdi Javan2018-07-301-0/+1
|
* Fix Grid Editor closing and disabling at same time (#11078)Mehdi Javan2018-07-201-1/+11
| | | Fixes #10688
* Fix removal tabsheets if last one is selected (#11070)Ilia Motornyi2018-07-191-3/+1
| | | Fixes #10925
* Fix Grid resetting row height on resize (#11056)Teemu Suo-Anttila2018-07-171-1/+6
|
* Fix Grid internal size calculations on vertical resize (#11046)Teemu Suo-Anttila2018-07-131-4/+12
|
* Unlock and refactor some API to create a new ContextMenu (#11041)Ilia Motornyi2018-07-115-28/+91
|
* Add xsrf token header if cookie is present (#11034)Ilia Motornyi2018-07-112-0/+16
| | | Fixes #9471
* Fix formatting, improve documentation on autoformat (#11033)Ilia Motornyi2018-07-101-1/+2
|