Lines Matching refs:cell

192 FCKTableHandler.InsertCell = function( cell, insertBefore )  argument
215 FCKTableHandler.DeleteCell = function( cell ) argument
218 if ( cell.parentNode.cells.length == 1 )
221 FCKTableHandler.DeleteRows( FCKTools.GetElementAscensor( cell, 'TR' ) ) ;
226 cell.parentNode.removeChild( cell ) ;
582 FCKTableHandler._GetCellIndexSpan = function( tableMap, rowIndex, cell ) argument
591 if ( oRow[c] == cell )
599 FCKTableHandler._GetCellLocation = function( tableMap, cell ) argument
605 if ( tableMap[i][c] == cell ) return [i,c];
692 var cell = tableMap[i][j] ;
693 if ( cell.parentNode )
694 cell.parentNode.removeChild( cell ) ;
695 cell.colSpan = cell.rowSpan = 1 ;
705 var cell = tableMap[i][j] ;
706 if ( ! cell)
710 if ( cell._colScanned === true )
712 if ( tableMap[i][j-1] == cell )
713 cell.colSpan++ ;
714 if ( tableMap[i][j+1] != cell )
715 cell._colScanned = true ;
726 var cell = tableMap[j][i] ;
727 if ( ! cell || cell._rowScanned === true )
729 if ( tableMap[j-1] && tableMap[j-1][i] == cell )
730 cell.rowSpan++ ;
731 if ( ! tableMap[j+1] || tableMap[j+1][i] != cell )
732 cell._rowScanned = true ;
741 var cell = tableMap[i][j] ;
744 cell.removeAttribute( '_colScanned' ) ;
745 cell.removeAttribute( '_rowScanned' ) ;
749 delete cell._colScanned ;
750 delete cell._rowScanned ;
761 var cell = tableMap[i][j] ;
762 if ( tableMap[i-1] && tableMap[i-1][j] == cell )
764 j += cell.colSpan ;
767 rowObj.appendChild( cell ) ;
768 j += cell.colSpan ;
769 if ( cell.colSpan == 1 )
770 cell.removeAttribute( 'colspan' ) ;
771 if ( cell.rowSpan == 1 )
772 cell.removeAttribute( 'rowspan' ) ;