summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Add ContentMode for row and cell descriptions in Grid (#10282)Teemu Suo-Anttila2017-11-107-49/+295
|
* Update README.md (#10302)Olli Tietäväinen2017-11-101-1/+1
|
* Relax mapper access in HierarchicalDataCommunicator Ilia Motornyi2017-11-101-0/+8
| | | Fixes #10292
* Remove deprecated usage of ApplicationConnection.hasEventListeners() (#10248)Ahmed Ashour2017-11-075-8/+13
| | | From VDateField and VWindow
* Skip scheduled flush if clear() is called (#10289)Leif Åstrand2017-11-071-8/+15
| | | Based on vaadin/flow#2834
* Make focus circulate in modal dialog to improve accessibility (#10260)Péter Török2017-11-075-4/+47
| | | Make focus circulate in modal dialog to improve accessibility
* HasItems.setItems(T... items) should allow edits (#10290)Pekka Hyvönen2017-11-065-3/+92
| | | | | | | | | * HasItems.setItems(T... items) should allow edits Arrays.asList() creates a immutable Arrays.ArrayList, preventing users from doing dataProvider.getItems() and updating the returned collection. This makes it impossible to keep the same data provider, update it and keep the filters & sorting, and then just call dataProvider.refreshAll() to get changes visible. We should not require users to create a new data provider in this case. This is the same for DataProvider.ofItems(T... items) * fix missing whitespace from test error message
* Relax TreeGrid and Tree members access modifiers. (#10293)Ilia Motornyi2017-11-063-6/+44
| | | | | | | | * Relax TreeGrid and Tree members access modifiers. Fixes #10292 * Fixes after review
* Use Logger instead of VConsole (#10249)Ahmed Ashour2017-11-0633-111/+232
| | | Because VConsole is deprecated and it recommends using Logger instead
* Fix javadoc ending (#10274)Ahmed Ashour2017-11-0628-102/+102
|
* Fix link format (#10269)Henri Muurimaa2017-11-061-1/+1
|
* Fix typo (#10295)Mikko Inkinen2017-11-061-1/+1
|
* Use lambda expressions. (#10268)Ahmed Ashour2017-11-01538-10755/+4776
|
* Use local variable for getWidget(). (#10253)Ahmed Ashour2017-10-3128-566/+589
| | | | | In some places, getWidget() is called many times, and I believe this can have a litte performance improvement, since in some cases super.getWidget() is called more than once.
* Fix end of line comments, which were made by automatic formatter (#10234)Ahmed Ashour2017-10-3138-128/+134
|
* Remove redundant interface already implemented by super class. (#10258)Ahmed Ashour2017-10-3182-182/+104
|
* Fix combo box suggestion popup height (#10256)Adam Wagner2017-10-305-3/+91
| | | Fixes #10214
* add Grid.Column#get/setAssistiveCaption (#10219)Knoobie2017-10-307-2/+186
| | | | | | | | | | | | | | | | | | | | | | | | * add Grid#Column#get/setAssistiveCaption * fix test and update doc * move testGridAssistiveCaption to GridTest * delete test file * delete test file * Delete GridAssistiveCaptionTest.java * Create GridAssistiveCaptionTest * Create GridAssistiveCaption * Rename GridAssistiveCaption to GridAssistiveCaption.java * Rename GridAssistiveCaptionTest to GridAssistiveCaptionTest.java * Reformat using eclipse
* Use lambda with Handlers (#10229)Ahmed Ashour2017-10-2775-1351/+734
| | | Also improve naming by replacing one-letter variable names.
* Use lambda with Listeners (#10222)Ahmed Ashour2017-10-26213-2220/+1088
| | | Also use "event" as the name for events
* Improve naming of fields and variables (#10242)Ahmed Ashour2017-10-2687-431/+431
| | | | | * Variable names to conform to naming convention. * Use static constants where it makes sense
* Remove trailing spaces (#10224)Ahmed Ashour2017-10-26118-368/+368
|
* Add contribution guideline (#10083)Teemu Suo-Anttila2017-10-231-0/+34
| | | | | | | | | | * Add contribution guideline * Make suggested improvements to CONTRIBUTING.md * Add link to good first issues and project setup * Small update to CONTRIBUTING.md
* adds simple fix for missing label text in grid select checkboxes (#10223)Knoobie2017-10-233-1/+16
| | | | | | * adds simple fix for missing label text in grid select checkboxes * updated comment and wording
* Fix bad grammar in declarative documentation (#10236)Pekka Hyvönen2017-10-231-4/+2
| | | | | | * Fix bad grammar in declarative documentation * Fix typos
* Unlock panel caption div hacking (#10120)Ilia Motornyi2017-10-231-3/+11
| | | | | | | | * Unlock panel caption div hacking Fixes #10119 * Javadoc formatting fix
* Grid column to be sortable when implemented/supported (Fixes #8792). (#10190)Ahmed Ashour2017-10-2311-37/+336
| | | | | | | | | | | * Grid column to be sortable when implemented/supported * Fix GridDeclarativeTest * Parameterize to Grid<Person> * Revert Parameterize to Grid<Person>, JDK with generics. * Assertions for other columns * Fix test Fixes #8792
* Grid.removeColumn() not to fail silently (Fixes #8056) (#10215)Ahmed Ashour2017-10-202-37/+105
| | | | | | | | | | * Grid.removeColumn() not to fail silently (Fixes #8056) * Compilation with JDK * Fix removeColumnByColumn_alreadyRemoved test * Use ExpectedException
* Typo in code (#10218)Oskar Bilén2017-10-201-1/+1
| | | Remove "java" from code example
* AbstractDateField.formatDate() to be abstract (#10186)Ahmed Ashour2017-10-2016-308/+272
| | | | | | | | | | | | | | | | | | | | | | * AbstractDateField.formatDate to be abstract Remove invalidDateString paramter, as it can be deduced * Fix test * Remove AbstractDateField.getResolutionVariable VAbstractTextualDate: rename updateDateVariables() to updateBufferedResolutions() * Revert to use fixed value of MONDAY. * release notes * updateAndSendBufferedValues() * Missed call to updateAndSendBufferedValues(); * release note
* Added utility method Binder#asRequired() (#9873)Stephan Knitelius2017-10-201-0/+25
| | | | | | | | | * Added the possiblity of defining a Field as Required without setting an error message. * Added @since to asRequired() * Add droped paragraphs and see tag for asRequired(String)
* Fix typos (#10213)Ahmed Ashour2017-10-2033-57/+57
| | | | | | * Fix typos * Fix
* Check class name type on Grid cell mouse over (#10194)Adam Wagner2017-10-204-1/+83
| | | | | | | | | | * Check whether className is of type string * Move string type checker method to widget util * Fix formatting of WidgetUtil * Break svg into lines
* Improve role usage in grid (#10206)Knoobie2017-10-202-5/+95
| | | | | | | | | | | | | | | | | | | | | | | | * add role="row" and role="gridcell" * optimize code and add additional rows for the header * add simple test * improve code and add rowgroup * add debug log * add more log to test * remove debug test info and add role before appending to tr * wording - change contains to contain * create enum for magic strings, change comments and method signature * rename enum to be singular and rename param roleName to role * update javadoc, rename and make enum public
* Use .toLowerCase and .toUpperCase(Locale.ROOT) (#10182)Ahmed Ashour2017-10-20106-309/+444
| | | | | | | | * Use .toLowerCase and .toUpperCase(Locale.ROOT) * Spaces * add spaces after if(
* Use GWT 2.8.2 (#10217)Teemu Suo-Anttila2017-10-201-1/+1
|
* Fix HTML tags inside code in javadoc (#10160)Ahmed Ashour2017-10-203-11/+7
| | | | | | | | * Fix HTML tags inside code in javadoc * only modify <table> and <tr> * Fix javadoc
* Scheduler.ScheduledCommand and RepeatingCommand to be lambda (#10203)Ahmed Ashour2017-10-2029-763/+415
| | | | | | | | * Scheduler.ScheduledCommand and RepeatingCommand to be lambda * Restore <table> in javadoc * Fix docs
* Add spaces after 'if' and 'for' in JavaScript (#10199)Ahmed Ashour2017-10-2040-171/+164
| | | | | | | | * Add spaces after 'if' and 'for' in JavaScript * Revert to old format * Remove whitespaces
* Simplify lambda expressions (#10198)Ahmed Ashour2017-10-2082-546/+415
| | | | | | | | * Simplify lambda expressions And remove unneeded 'return' keyword. * Format
* AbstractDateField: set value after being invalid (#10187)Ahmed Ashour2017-10-204-29/+133
| | | | Fixes #9763 Fixes #9978
* Fix AbstractDateField to correctly show week day names (#10188)Ahmed Ashour2017-10-165-10/+136
| | | Fixes #9200
* Add *.properties to .gitattributes (#10180)Ahmed Ashour2017-10-161-0/+1
|
* Fix IDE usage of Elemental in vaadin-shared (#10178)Teemu Suo-Anttila2017-10-163-1/+27
|
* Fix some checkstyle warnings (#10179)Ahmed Ashour2017-10-137-37/+55
|
* Simplify waitUntil() in tests (#10181)Ahmed Ashour2017-10-1323-200/+58
|
* Convert AbstractDateField not to be a LegacyComponent (#10148)Ahmed Ashour2017-10-1323-602/+691
|
* Add Navigator testing to Spring Boot test (#10174)Teemu Suo-Anttila2017-10-1331-46/+1021
|
* Use Collection.isEmpty() (#10172)Ahmed Ashour2017-10-1259-116/+122
|
* Remove redundant null checks before an instanceof (#10173)Ahmed Ashour2017-10-1211-18/+14
|