Lines Matching refs:col

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);
6715 DayTableMixin.prototype.getColDayIndex = function (col) {
6717 return this.colCnt - 1 - col;
6720 return col;
6859 var col;
6861 for (col = 0; col < this.colCnt; col++) {
6862 date = this.getCellDate(0, col);
6931 var col;
6933 for (col = 0; col < this.colCnt; col++) {
6934 date = this.getCellDate(row, col);
7368 var col;
7388 for (col = 0; col < colCnt; col++) {
7392 this.getCellDate(row, col),
7393 this.getCellEl(row, col),
7447 var col;
7449 for (col = 0; col < this.colCnt; col++) {
7450 date = this.getCellDate(row, col);
7512 var col = this.colCoordCache.getHorizontalIndex(leftOffset);
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) {
7533 col: col,
7535 left: this.colCoordCache.getLeftOffset(col),
7536 right: this.colCoordCache.getRightOffset(col),
7541 DayGrid.prototype.getCellEl = function (row, col) {
7542 return this.cellEls.eq(row * this.colCnt + col);
7653 var col = 0; // col #, left-to-right (not chronologically)
7671 while (col < endCol) {
7672 segsBelow = _this.getCellSegs(row, col, levelLimit);
7674 td = cellMatrix[levelLimit - 1][col];
7675 moreLink = _this.renderMoreLink(row, col, segsBelow);
7680 col++;
7695 while (col <= seg.rightCol) {
7696 segsBelow = this.getCellSegs(row, col, levelLimit);
7699 col++;
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) {
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) {
7898 seg = segMatrix[level][col];
12807 segs[i].col = this.daysPerRow - 1 - segs[i].dayIndex;
12810 segs[i].col = segs[i].dayIndex;
13020 segsByCol[segs[i].col].push(segs[i]);
13027 var col;
13030 for (col = 0; col < this.colCnt; col++) { // iterate each column grouping
13031 segs = segsByCol[col];
13033 containerEls.eq(col).append(segs[i].el);
13059 .appendTo(this.colContainerEls.eq(segs[i].col))[0]);
13177 col: colIndex,
13189 var start = this.getCellDate(0, hit.col); // row=0
13202 return this.colEls.eq(hit.col);
13291 var col;
13293 for (col = 0; col < this.timeGrid.colCnt; col++) {
13294 this.updateFgSegCoords(segsByCol[col]);
13603 if (sourceSeg && sourceSeg.col === seg.col) {
13726 var col;
13733 while (col < endCol) {
13735 td = (loneCellMatrix[i - 1] || [])[col];
13743 cellMatrix[i][col] = td;
13744 loneCellMatrix[i][col] = td;
13745 col++;
13750 col = 0;
13767 loneCellMatrix[i][col] = td;
13769 while (col <= seg.rightCol) {
13770 cellMatrix[i][col] = td;
13771 segMatrix[i][col] = seg;
13772 col++;