Lines Matching refs:row

6701     DayTableMixin.prototype.getCellDate = function (row, col) {
6702 return this.dayDates[this.getCellDayIndex(row, col)].clone();
6705 DayTableMixin.prototype.getCellRange = function (row, col) {
6706 var start = this.getCellDate(row, col);
6711 DayTableMixin.prototype.getCellDayIndex = function (row, col) {
6712 return row * this.daysPerRow + this.getColDayIndex(col);
6766 var row;
6771 for (row = 0; row < this.rowCnt; row++) {
6772 rowFirst = row * daysPerRow;
6782 row: row,
6802 var row;
6808 for (row = 0; row < this.rowCnt; row++) {
6809 rowFirst = row * daysPerRow;
6820 row: row,
6918 DayTableMixin.prototype.renderBgTrHtml = function (row) {
6921 (this.isRTL ? '' : this.renderBgIntroHtml(row)) +
6922 this.renderBgCellsHtml(row) +
6923 (this.isRTL ? this.renderBgIntroHtml(row) : '') +
6926 DayTableMixin.prototype.renderBgIntroHtml = function (row) {
6929 DayTableMixin.prototype.renderBgCellsHtml = function (row) {
6934 date = this.getCellDate(row, col);
7367 var row;
7372 for (row = 0; row < rowCnt; row++) {
7373 html += this.renderDayRowHtml(row, this.isRigid);
7387 for (row = 0; row < rowCnt; row++) {
7392 this.getCellDate(row, col),
7393 this.getCellEl(row, col),
7402 DayGrid.prototype.renderDayRowHtml = function (row, isRigid) {
7412 this.renderBgTrHtml(row) +
7419 this.renderNumberTrHtml(row) +
7434 DayGrid.prototype.renderNumberTrHtml = function (row) {
7437 (this.isRTL ? '' : this.renderNumberIntroHtml(row)) +
7438 this.renderNumberCellsHtml(row) +
7439 (this.isRTL ? this.renderNumberIntroHtml(row) : '') +
7442 DayGrid.prototype.renderNumberIntroHtml = function (row) {
7445 DayGrid.prototype.renderNumberCellsHtml = function (row) {
7450 date = this.getCellDate(row, col);
7513 var row = this.rowCoordCache.getVerticalIndex(topOffset);
7514 if (row != null && col != null) {
7515 return this.getCellHit(row, col);
7520 var range = this.getCellRange(hit.row, hit.col);
7525 return this.getCellEl(hit.row, hit.col);
7530 DayGrid.prototype.getCellHit = function (row, col) {
7532 row: row,
7537 top: this.rowCoordCache.getTopOffset(row),
7538 bottom: this.rowCoordCache.getBottomOffset(row)
7541 DayGrid.prototype.getCellEl = function (row, col) {
7542 return this.cellEls.eq(row * this.colCnt + col);
7602 var row; // row #
7604 for (row = 0; row < rowStructs.length; row++) {
7605 this.unlimitRow(row);
7613 rowLevelLimit = this.computeRowLevelLimit(row);
7616 this.limitRow(row, rowLevelLimit);
7623 DayGrid.prototype.computeRowLevelLimit = function (row) {
7624 var rowEl = this.rowEls.eq(row); // the containing "fake" row div
7626 var trEls = this.eventRenderer.rowStructs[row].tbodyEl.children();
7649 DayGrid.prototype.limitRow = function (row, levelLimit) {
7651 var rowStruct = this.eventRenderer.rowStructs[row];
7672 segsBelow = _this.getCellSegs(row, col, levelLimit);
7675 moreLink = _this.renderMoreLink(row, col, segsBelow);
7696 segsBelow = this.getCellSegs(row, col, levelLimit);
7709 …moreLink = this.renderMoreLink(row, seg.leftCol + j, [seg].concat(segsBelow) // count seg as hidde…
7727 DayGrid.prototype.unlimitRow = function (row) {
7728 var rowStruct = this.eventRenderer.rowStructs[row];
7740 DayGrid.prototype.renderMoreLink = function (row, col, hiddenSegs) {
7747 var date = _this.getCellDate(row, col);
7749 var dayEl = _this.getCellEl(row, col);
7750 var allSegs = _this.getCellSegs(row, col);
7772 _this.showSegPopover(row, col, moreEl, reslicedAllSegs);
7780 DayGrid.prototype.showSegPopover = function (row, col, moreLink, segs) {
7790 topEl = this.rowEls.eq(row); // will align with top of row
7794 content: this.renderSegPopoverContent(row, col, segs),
7826 DayGrid.prototype.renderSegPopoverContent = function (row, col, segs) {
7829 var title = this.getCellDate(row, col).format(this.opt('dayPopoverFormat'));
7849 segs[i].hit = this.getCellHit(row, col);
7892 DayGrid.prototype.getCellSegs = function (row, col, startLevel) {
7893 var segMatrix = this.eventRenderer.rowStructs[row].segMatrix;
8121 SubClass.prototype.renderNumberIntroHtml = function (row) {
8123 var weekStart = this.getCellDate(row, 0);
13705 var row;
13708 for (row = 0; row < segRows.length; row++) {
13709 rowStructs.push(this.renderSegRow(row, segRows[row]));
13716 DayGridEventRenderer.prototype.renderSegRow = function (row, rowSegs) {
13782 row: row,
13827 segRows[segs[i].row].push(segs[i]);
13930 this.component.rowEls.each(function (row, rowNode) {
13936 if (sourceSeg && sourceSeg.row === row) {
13948 .append(rowStructs[row].tbodyEl);
13982 this.component.rowEls.eq(seg.row).append(skeletonEl);