Home
last modified time | relevance | path

Searched refs:oCell (Results 1 – 8 of 8) sorted by relevance

/plugin/grensladawritezor/fckeditor/editor/_source/internals/
Dfcktablehandler.js85 var oCell = FCKSelection.MoveToAncestorNode('TD') || FCKSelection.MoveToAncestorNode('TH') ;
87 if ( !oCell ) return ;
90 var oTable = FCKTools.GetElementAscensor( oCell, 'TABLE' ) ;
93 var iIndex = oCell.cellIndex + 1 ;
105 oCell = oRow.cells[iIndex-1].cloneNode(false) ;
108 oCell.innerHTML = GECKO_BOGUS ;
115 oRow.insertBefore( oCell, oBaseCell ) ; // Insert the new cell just before of it.
117 oRow.appendChild( oCell ) ; // Append the cell at the end of the row.
124 var oCell = FCKSelection.MoveToAncestorNode('TD') || FCKSelection.MoveToAncestorNode('TH') ;
126 if ( !oCell ) return ;
[all …]
Dfcktablehandler_gecko.js45 var oCell ;
48 oCell = oRange.startContainer ;
50 oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ;
52 if ( oCell.tagName.Equals( 'TD', 'TH' ) )
53 aCells[aCells.length] = oCell ;
/plugin/wysiwyg/fckeditor/editor/_source/classes/
Dfcktoolbarbuttonui.js83 var oCell = oRow.insertCell(-1) ;
86 oCell.appendChild( this.Icon.CreateIconElement( oDoc ) ) ;
88 oCell.appendChild( this._CreatePaddingElement( oDoc ) ) ;
93 oCell = oRow.insertCell(-1) ;
94 oCell.className = 'TB_Button_Text' ;
95 oCell.noWrap = true ;
96 oCell.appendChild( oDoc.createTextNode( this.Label ) ) ;
107 oCell = oRow.insertCell(-1) ;
108 var eImg = oCell.appendChild( oDoc.createElement( 'IMG' ) ) ;
115 oCell = oRow.insertCell(-1) ;
[all …]
/plugin/grensladawritezor/fckeditor/editor/_source/classes/
Dfcktoolbarbuttonui.js91 var oCell = oRow.insertCell(-1) ;
94 oCell.appendChild( this.Icon.CreateIconElement( oDoc ) ) ;
96 oCell.appendChild( this._CreatePaddingElement( oDoc ) ) ;
101 oCell = oRow.insertCell(-1) ;
102 oCell.className = 'TB_Button_Text' ;
103 oCell.noWrap = true ;
104 oCell.appendChild( oDoc.createTextNode( this.Label ) ) ;
115 oCell = oRow.insertCell(-1) ;
116 var eImg = oCell.appendChild( oDoc.createElement( 'IMG' ) ) ;
123 oCell = oRow.insertCell(-1) ;
[all …]
/plugin/wysiwyg/fckeditor/editor/_source/internals/
Dfcktablehandler_gecko.js44 var oCell ;
47 oCell = oRange.startContainer ;
49 oCell = oRange.startContainer.childNodes[ oRange.startOffset ] ;
51 if ( oCell.tagName.Equals( 'TD', 'TH' ) )
52 aCells[aCells.length] = oCell ;
Dfcktablehandler.js107 var oCell = null ;
111 oCell = nodes[ insertBefore ? 0 : ( nodes.length - 1 ) ] ;
113 if ( ! oCell )
117 var oTable = FCKTools.GetElementAscensor( oCell, 'TABLE' ) ;
119 var iIndex = oCell.cellIndex ;
131 oCell = oRow.cells[iIndex].cloneNode(false) ;
134 FCKTools.AppendBogusBr( oCell ) ;
140 oRow.insertBefore( oCell, oBaseCell ) ;
142 oRow.insertBefore( oCell, oBaseCell.nextSibling ) ;
144 oRow.appendChild( oCell ) ;
[all …]
/plugin/grensladawritezor/fckeditor/editor/_source/commandclasses/
Dfcktextcolorcommand.js130 var oCell = oTable.insertRow(-1).insertCell(-1) ;
131 oCell.colSpan = 8 ;
134 var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
167 oCell = oTable.insertRow(-1).insertCell(-1) ;
168 oCell.colSpan = 8 ;
170 oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
/plugin/wysiwyg/fckeditor/editor/_source/commandclasses/
Dfcktextcolorcommand.js129 var oCell = oTable.insertRow(-1).insertCell(-1) ;
130 oCell.colSpan = 8 ;
133 var oDiv = oCell.appendChild( CreateSelectionDiv() ) ;
172 oCell = oTable.insertRow(-1).insertCell(-1) ;
173 oCell.colSpan = 8 ;
175 oDiv = oCell.appendChild( CreateSelectionDiv() ) ;