-
Notifications
You must be signed in to change notification settings - Fork 273
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
feat(ui5-table): add "loadMore" capability #2589
Conversation
@@ -72,6 +112,20 @@ const metadata = { | |||
showNoData: { | |||
type: Boolean, | |||
}, | |||
|
|||
/** | |||
* Defines if additonal row will be displayed at the bottom of the table. |
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.
I think this description is too technical (the implementation is with a row) but anyway we'll change this text once we add the growing feature as it would need to say "shows a more button or activates the even on scroll" then. I would suggest for now:
Defines if a "More" button will be displayed at the bottom of the table.
Pressing this button will fire the load-more
event.
Adds growing capability to the Table upon user scroll (previously possible through "More" button - see the PR #2589). With this feature, the "load-more" event will be fired when the user scrolls to the table's end. FIXES: #2570 BREAKING_CHANGES: "has-more" removed, use "growing" instead; "load-more-text" has been renamed to more-text; "load-more-subtext" has been renamed to "more-subtext"
Adds growing capability to the Table upon user scroll (previously possible through "More" button - see the PR #2589). With this feature, the "load-more" event will be fired when the user scrolls to the table's end. FIXES: #2570 BREAKING_CHANGES: "has-more" removed, use "growing" instead; "load-more-text" has been renamed to more-text; "load-more-subtext" has been renamed to "more-subtext"
Adds growing capability to the Table upon user scroll (previously possible through "More" button - see the PR SAP#2589). With this feature, the "load-more" event will be fired when the user scrolls to the table's end. FIXES: SAP#2570 BREAKING_CHANGES: "has-more" removed, use "growing" instead; "load-more-text" has been renamed to more-text; "load-more-subtext" has been renamed to "more-subtext"
Change
Adds "loadMore" capability to the Table through a special row, displayed at the bottom as first part of the following requirement #2570 At later point, the loadMore capability will be available upon scroll as well.
Usage
Properties
Events
Result