Panels with campaign statistics and some fixes in computation of clicks.

This commit is contained in:
Tomas Bures 2018-12-16 13:47:08 +01:00
parent ba996d845d
commit d103a2cc79
18 changed files with 811 additions and 96 deletions

View file

@ -48,12 +48,14 @@ class Table extends Component {
onSelectionChangedAsync: PropTypes.func,
onSelectionDataAsync: PropTypes.func,
withHeader: PropTypes.bool,
refreshInterval: PropTypes.number
refreshInterval: PropTypes.number,
pageLength: PropTypes.number
}
static defaultProps = {
selectMode: TableSelectMode.NONE,
selectionKeyIndex: 0
selectionKeyIndex: 0,
pageLength: 50
}
refresh() {
@ -262,7 +264,8 @@ class Table extends Component {
}
const dtOptions = {
columns
columns,
pageLength: this.props.pageLength
};
const self = this;