Commit message (Collapse) | Author | Age | Files | Lines | ||
---|---|---|---|---|---|---|
... | ||||||
* | Use Logger instead of VConsole (#10249) | Ahmed Ashour | 2017-11-06 | 1 | -2/+7 | |
| | | | Because VConsole is deprecated and it recommends using Logger instead | |||||
* | Use lambda expressions. (#10268) | Ahmed Ashour | 2017-11-01 | 472 | -9676/+4180 | |
| | ||||||
* | Use local variable for getWidget(). (#10253) | Ahmed Ashour | 2017-10-31 | 1 | -6/+7 | |
| | | | | | 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 Ashour | 2017-10-31 | 7 | -15/+16 | |
| | ||||||
* | Remove redundant interface already implemented by super class. (#10258) | Ahmed Ashour | 2017-10-31 | 9 | -21/+9 | |
| | ||||||
* | Fix combo box suggestion popup height (#10256) | Adam Wagner | 2017-10-30 | 1 | -0/+25 | |
| | | | Fixes #10214 | |||||
* | add Grid.Column#get/setAssistiveCaption (#10219) | Knoobie | 2017-10-30 | 1 | -0/+40 | |
| | | | | | | | | | | | | | | | | | | | | | | | | * 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 Ashour | 2017-10-27 | 27 | -380/+175 | |
| | | | Also improve naming by replacing one-letter variable names. | |||||
* | Use lambda with Listeners (#10222) | Ahmed Ashour | 2017-10-26 | 159 | -1857/+824 | |
| | | | Also use "event" as the name for events | |||||
* | Remove trailing spaces (#10224) | Ahmed Ashour | 2017-10-26 | 7 | -17/+17 | |
| | ||||||
* | Grid column to be sortable when implemented/supported (Fixes #8792). (#10190) | Ahmed Ashour | 2017-10-23 | 3 | -5/+104 | |
| | | | | | | | | | | | * 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 | |||||
* | Fix typos (#10213) | Ahmed Ashour | 2017-10-20 | 2 | -2/+2 | |
| | | | | | | * Fix typos * Fix | |||||
* | Check class name type on Grid cell mouse over (#10194) | Adam Wagner | 2017-10-20 | 1 | -0/+40 | |
| | | | | | | | | | | * Check whether className is of type string * Move string type checker method to widget util * Fix formatting of WidgetUtil * Break svg into lines | |||||
* | Use .toLowerCase and .toUpperCase(Locale.ROOT) (#10182) | Ahmed Ashour | 2017-10-20 | 15 | -38/+69 | |
| | | | | | | | | * Use .toLowerCase and .toUpperCase(Locale.ROOT) * Spaces * add spaces after if( | |||||
* | Scheduler.ScheduledCommand and RepeatingCommand to be lambda (#10203) | Ahmed Ashour | 2017-10-20 | 1 | -287/+130 | |
| | | | | | | | | * Scheduler.ScheduledCommand and RepeatingCommand to be lambda * Restore <table> in javadoc * Fix docs | |||||
* | Add spaces after 'if' and 'for' in JavaScript (#10199) | Ahmed Ashour | 2017-10-20 | 3 | -5/+5 | |
| | | | | | | | | * Add spaces after 'if' and 'for' in JavaScript * Revert to old format * Remove whitespaces | |||||
* | Simplify lambda expressions (#10198) | Ahmed Ashour | 2017-10-20 | 38 | -298/+236 | |
| | | | | | | | | * Simplify lambda expressions And remove unneeded 'return' keyword. * Format | |||||
* | AbstractDateField: set value after being invalid (#10187) | Ahmed Ashour | 2017-10-20 | 2 | -9/+38 | |
| | | | | Fixes #9763 Fixes #9978 | |||||
* | Fix AbstractDateField to correctly show week day names (#10188) | Ahmed Ashour | 2017-10-16 | 2 | -2/+42 | |
| | | | Fixes #9200 | |||||
* | Use Collection.isEmpty() (#10172) | Ahmed Ashour | 2017-10-12 | 4 | -4/+4 | |
| | ||||||
* | Add ErrorLevel to Validators and results (#10099) | Teemu Suo-Anttila | 2017-10-11 | 1 | -0/+29 | |
| | | | Fixes #9792 | |||||
* | Add aria-rowcount to grid (#10167) | Knoobie | 2017-10-11 | 3 | -1/+108 | |
| | | | This is based on discussion from vaadin/vaadin-grid#1023 . | |||||
* | Prevent Grid refreshAll from getting stuck due mismatched state (#10161) | Ansku | 2017-10-10 | 1 | -0/+93 | |
| | | | Fixes #10038 | |||||
* | Fix typos (#10158) | Ahmed Ashour | 2017-10-10 | 3 | -6/+9 | |
| | ||||||
* | Remove unneeded .toString() (#10141) | Ahmed Ashour | 2017-10-10 | 39 | -101/+83 | |
| | ||||||
* | Edit grid row by index - server side (#10040) | Piotr Wilkin | 2017-10-10 | 1 | -0/+5 | |
| | | | | | Opening grid editor from server side. Fixes #8477. Addressing #8820 will be the user's responsibility as fetching index of item might be slow. | |||||
* | Use StringBuilder instead of StringBuffer (#10154) | Ahmed Ashour | 2017-10-09 | 7 | -9/+9 | |
| | ||||||
* | Fix typos (#10124) | Ahmed Ashour | 2017-10-04 | 9 | -35/+39 | |
| | ||||||
* | Add role="grid" and aria-multiselectable to grid (#10009) | Knoobie | 2017-10-04 | 1 | -0/+50 | |
| | | | Also adds aria-selected for grid rows. | |||||
* | Remove unneeded .toArray() (#10131) | Ahmed Ashour | 2017-10-03 | 1 | -1/+1 | |
| | | | Use for each loop. | |||||
* | Use enhanced for loop for arrays. (#10121) | Ahmed Ashour | 2017-10-02 | 15 | -66/+58 | |
| | ||||||
* | Simplify conditional logic. (#10122) | Ahmed Ashour | 2017-10-02 | 1 | -1/+0 | |
| | | | And remove unused imports. | |||||
* | Use enhanced for loop instead of Iterator. (#10100) | Ahmed Ashour | 2017-09-29 | 5 | -40/+14 | |
| | ||||||
* | Use StandardCharsets.UTF_8 (#10113) | Ahmed Ashour | 2017-09-29 | 4 | -12/+12 | |
| | ||||||
* | Remove auto-generated comment (#10111) | Ahmed Ashour | 2017-09-29 | 23 | -101/+20 | |
| | ||||||
* | Handle 'z' (timezone) in AbstractDateField.setDateFormat() (#8844) | Ahmed Ashour | 2017-09-28 | 1 | -0/+78 | |
| | ||||||
* | Use interface instead of implementation (#10073) | Ahmed Ashour | 2017-09-28 | 31 | -52/+69 | |
| | ||||||
* | Use single character for StringBuilder.append (#10102) | Ahmed Ashour | 2017-09-28 | 6 | -16/+16 | |
| | ||||||
* | Fix typos (#10095) | Ahmed Ashour | 2017-09-27 | 3 | -3/+3 | |
| | ||||||
* | Support addCloseListener for Notification (#10027) | Ahmed Ashour | 2017-09-27 | 1 | -0/+47 | |
| | | | | | Converts Notification to an Extension and adds support for listening to the closing of notifications. Fixes #888 | |||||
* | Add option to use PushState instead of URI fragments in Navigator (#10042) | Teemu Suo-Anttila | 2017-09-27 | 3 | -0/+14 | |
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Navigator now by default uses pushState and normal URLs * added documentation for pushState and updated Navigator documentation * improving docs etc, adding one TODO to be solved before merging * pushState/replaceState no work better with changing titles * Making uri fragment navigator work when not using specially mapped UI * Revert to older default, add annotation for selecting * Fix tests, add null checks * Reorder if-clause, fix tests * Revert unnecessary test change * Use correct variable in UI, fix test clean up * Updates to JavaDocs, fix some methods and tests * Add comments, fix test ui, TODO for fallbacks * Navigation documentation, JavaDocs, removed TODOs * Documentation fixes * Improve JavaDocs * Fix link name in documentation * Improve throws declaration in getLocation * Change documentation about the PushState based navigation * Add since tags * Add since tags for UI | |||||
* | Implement error level on client side (#9817) | Adam Wagner | 2017-09-27 | 2 | -1/+211 | |
| | | | | | | | Add additional class names and style to components and error indicators to distinguish different error levels. Vaadin 8 implementation of #9816. Cherry picked changes and added compatibility package component changes and tests. Resolves #3139 | |||||
* | Relayout GridLayout when font loading completes (#10077) | Henri Sara | 2017-09-26 | 3 | -8/+79 | |
| | | | | | | If a GridLayout is used and font loading is not complete, force another layout after all fonts are loaded. Fixes #9921 Fixes #8207 | |||||
* | Remove unused @VERSION@ | Ahmed Ashour | 2017-09-25 | 8 | -8/+0 | |
| | ||||||
* | Fix TreeGrid double click event in hierarchy column (#10070) | Adam Wagner | 2017-09-25 | 1 | -0/+32 | |
| | | | Fixes #9868 | |||||
* | Construct array inline (#10068) | Ahmed Ashour | 2017-09-23 | 59 | -98/+95 | |
| | | | And some trivial test enhancements | |||||
* | Add empty line at end of file | Ahmed Ashour | 2017-09-23 | 69 | -73/+69 | |
| | ||||||
* | Fix javadoc references (#10067) | Ahmed Ashour | 2017-09-23 | 13 | -15/+0 | |
| | | | And remove unused imports. | |||||
* | Remove unused methods. (#10058) | Ahmed Ashour | 2017-09-22 | 3 | -5/+2 | |
| | ||||||
* | Replace CRLF with LF (#10062) | Henri Sara | 2017-09-22 | 2 | -141/+141 | |
| | | | | | | | After this change, .gitattributes will take care of keeping native line endings. * Replace CRLF with LF in non-Java files |