michael-s-molina commented on code in PR #22135: URL: https://github.com/apache/superset/pull/22135#discussion_r1027301753
########## superset-frontend/src/components/Table/index.tsx: ########## @@ -134,6 +146,32 @@ export interface TableProps extends AntTableProps<TableProps> { * when the number of rows exceeds the visible space. */ height?: number; + /** + * Sets the table to use react-window for scroll virtualization in cases where + * there are unknown amount of columns, or many, many rows + */ + virtualize?: boolean; + /** + * Used to override page controls total record count when using server-side paging. + */ + recordCount?: number; + /** + * Invoked when the tables sorting, paging, or filtering is changed. + */ + onChange?: ( + pagination: TablePaginationConfig, Review Comment: Thank you for the context @eric-briscoe. I noticed that the `extra` parameter has an `action` property with possible values of `pagination | sort | filter` which will enable us to track granular changes if needed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@superset.apache.org For additional commands, e-mail: notifications-h...@superset.apache.org