Skip to content

Commit 390ac18

Browse files
authored
Merge pull request #100 from webdev-dev/master
FilteredTable: Added version 2 using FixedDataTable2
2 parents 69756b5 + ce42a31 commit 390ac18

19 files changed

Lines changed: 18770 additions & 326 deletions

dist/_wfui-react.scss

Lines changed: 491 additions & 0 deletions
Large diffs are not rendered by default.
Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,7 +74,7 @@ var FilteredTable = function (_React$Component) {
7474
key: 'componentWillReceiveProps',
7575
value: function componentWillReceiveProps(nextProps) {
7676
/* Also note: JSON.stringify is the cheapest arbitrary comparison function
77-
* since it runs on native code. */
77+
* since it runs on native code. */
7878
var thisData = this.props.data;
7979
var nextData = nextProps.data;
8080

@@ -262,7 +262,7 @@ var FilteredTable = function (_React$Component) {
262262
currentPage: currentPage,
263263
numPages: numPages,
264264
/* Returns a function that will open the page 'page'
265-
* or undefined if the page does not exist. */
265+
* or undefined if the page does not exist. */
266266
getOpenPage: function getOpenPage(page) {
267267
if (page > 0 && page <= numPages) {
268268
return function () {
@@ -387,7 +387,7 @@ FilteredTable.propTypes = {
387387
};
388388

389389
FilteredTable.defaultProps = {
390-
pageSize: 1000,
390+
pageSize: 100000,
391391
paginatorDisplay: null,
392392
currentPage: 1,
393393
filterList: [],

0 commit comments

Comments
 (0)