-
Notifications
You must be signed in to change notification settings - Fork 1
feat: add select all support for grids using a lazy data provider #87
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -477,6 +477,7 @@ public static double getHeightByRows(Grid<?> grid) { | |||
* Defines the mode in which the Grid's height is calculated. | |||
* | |||
* <p>If {@link HeightMode#CSS} is given, Grid will respect the values given via a {@code | |||
* If {@link HeightMode#CSS} is given, Grid will respect the values given via a {@code |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Duplicate line
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
* | ||
* @param <T> the type of items in grid | ||
*/ | ||
public final class LazySelectAllGridHelper<T> implements Serializable { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Helper classes must not be public. Any public documentation about the feature goes into GridHelper
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
fixed
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
See comments
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please squash fix: implement review requested changes
into feat: add select all support for grids using a lazy data provider
, and remember to re-request review after changes are pushed.
Close #70