(page, sizePerPage)
| 184 | } |
| 185 | |
| 186 | page(page, sizePerPage) { |
| 187 | this.pageObj.end = page * sizePerPage - 1; |
| 188 | this.pageObj.start = this.pageObj.end - (sizePerPage - 1); |
| 189 | return this; |
| 190 | } |
| 191 | |
| 192 | edit(newVal, rowIndex, fieldName) { |
| 193 | const currentDisplayData = this.getCurrentDisplayData(); |
no outgoing calls
no test coverage detected