Lines Matching refs:rows

14343         var rows = instance.countRows();
14345 if (rows < priv.settings.minRows) {
14346 for (var r = 0, minRows = priv.settings.minRows; r < minRows - rows; r++) {
14651 rows: false
14660 var rows = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : false;
14664 instance.selection.selectedHeader.rows = rows;
14808 if (selection.selectedHeader.rows && selection.selectedHeader.cols) {
14810 } else if (selection.selectedHeader.rows) {
15732 if ((0, _mixed.isDefined)(settings.rows)) {
17531 var rows = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 100;
17538 for (i = 0; i < rows; i++) {
17558 var rows = arguments.length > 0 && arguments[0] !== undefined ? arguments[0] : 100;
17565 for (i = 0; i < rows; i++) {
17584 function createEmptySpreadsheetData(rows, columns) {
17588 for (var i = 0; i < rows; i++) {
17751 this.rows = [];
17790 if (!this.rows.length) {
17794 this.rows.push(rowObject);
17814 this.rows.push(rowObject);
17838 if (this.rows.length) {
17871 (0, _array.arrayEach)(this.rows, function (row) {
18089 this.rows.length = 0;
18090 this.rows[-1] = void 0;
18223 return !!(this.rows.length && !this.columns.length);
18235 return !!(this.columns.length && !this.rows.length);
23637 rows,
23645 rows = str.split('\n');
23647 if (rows.length > 1 && rows[rows.length - 1] === '') {
23648 rows.pop();
23650 for (r = 0, rLen = rows.length; r < rLen; r += 1) {
23651 rows[r] = rows[r].split('\t');
23653 for (c = 0, cLen = rows[r].length; c < cLen; c += 1) {
23659 arr[a][last] = arr[a][last] + '\n' + rows[r][0];
23661 if (multiline && countQuotes(rows[r][0]) & 1) {
23667 if (c === cLen - 1 && rows[r][c].indexOf('"') === 0 && countQuotes(rows[r][c]) & 1) {
23668 arr[a].push(rows[r][c].substring(1).replace(/""/g, '"'));
23671 arr[a].push(rows[r][c].replace(/""/g, '"'));
34457 selection.setSelectedHeaders(selection.selectedHeader.rows, false, false);
34487 if (selection.selectedHeader.rows) {
37474 if (this.ghostTable.rows.length) {
40975 …return !selected || this.selection.selectedHeader.rows || this.selection.selectedHeader.corner || …
42318 this.addHook('beforeColumnMove', function (rows, target) {
42319 return _this2.onBeforeColumnMove(rows, target);
42500 value: function onBeforeColumnMove(rows, target) {
42508 (0, _array.arrayEach)(rows, function (value, index, array) {
44611 value: function moveRows(rows, target) {
44615 var beforeMoveHook = this.hot.runHooks('beforeRowMove', rows, target);
44621 (0, _array.arrayEach)(rows, function (row, index, array) {
44626 (0, _array.arrayEach)(rows, function (row, index) {
44638 this.hot.runHooks('afterRowMove', rows, target);
44969 var isHeaderSelection = this.hot.selection.selectedHeader.rows;
45099 if (this.hot.selection.selectedHeader.rows) {
45708 if (this.hot.selection.isSelected() && this.hot.selection.selectedHeader.rows) {
48323 …} else if ((selectedHeader.cols || selectedHeader.rows) && coords.row >= 0 && coords.col >= 0 && !…
48328 } else if (selectedHeader.rows && coords.col < 0 && !blockCalculations.row) {
48330 …} else if ((!selectedHeader.cols && !selectedHeader.rows && coords.col < 0 || selectedHeader.cols …
48334 …} else if ((!selectedHeader.cols && !selectedHeader.rows && coords.row < 0 || selectedHeader.rows
48353 } else if (coords.col < 0 && selectedHeader.rows) {
48430 } else if (instance.selection.selectedHeader.rows && !blockCalculations.row) {
48439 } else if (instance.selection.selectedHeader.rows && !blockCalculations.row) {
48493 var rows = instance.countRows();
48501 calc.endRow = Math.min(calc.endRow + viewportOffset, rows - 1);
48505 var offset = Math.ceil(center / rows * 12);
48508 calc.endRow = Math.min(calc.endRow + offset, rows - 1);
50244 renderBody = function(rows)
50246 return '<tbody>' + rows.join('') + '</tbody>';