Panels with campaign statistics and some fixes in computation of clicks.
This commit is contained in:
parent
ba996d845d
commit
d103a2cc79
18 changed files with 811 additions and 96 deletions
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue