Lines Matching refs:this

50 								var widthType = this.getDialog().getContentElement( 'info', 'widthType' ),
52 inputElement = this.getInputElement(),
62 !isNaN( widthAttr ) && this.setValue( widthAttr );
63 !isNaN( widthStyle ) && this.setValue( widthStyle );
66 var value = parseInt( this.getValue(), 10 ),
67 unit = this.getDialog().getValueOf( 'info', 'widthType' );
92 this.setValue( widthMatch[ 2 ] );
119 this.setValue( alignClass);
123 var value = this.getValue();
153 this.setValue( selectedCell.getName() );
156 selectedCell.renameNode( this.getValue() );
169 this.setValue( attrVal );
172 var value = parseInt( this.getValue(), 10 );
174 selectedCell.setAttribute( 'rowSpan', this.getValue() );
188 this.setValue( attrVal );
191 var value = parseInt( this.getValue(), 10 );
193 selectedCell.setAttribute( 'colSpan', this.getValue() );
214 this.setValue( bgColorStyle || bgColorAttr );
217 var value = this.getValue();
220 selectedCell.setStyle( 'background-color', this.getValue() );
235 this.getElement().getParent().setStyle( 'vertical-align', 'bottom' );
240 this.getDialog().getContentElement( 'info', 'bgColor' ).setValue( color );
241 this.focus();
242 }, this );
263 this.setValue( borderColorStyle || borderColorAttr );
266 var value = this.getValue();
268 selectedCell.setStyle( 'border-color', this.getValue() );
285 this.getElement().getParent().setStyle( 'vertical-align', 'bottom' );
290 this.getDialog().getContentElement( 'info', 'borderColor' ).setValue( color );
291 this.focus();
292 }, this );
305 this.cells = CKEDITOR.plugins.tabletools.getSelectedCells( this._.editor.getSelection() );
306 this.setupContent( this.cells[ 0 ] );
309 var selection = this._.editor.getSelection(),
312 var cells = this.cells;
314 this.commitContent( cells[ i ] );
316 this._.editor.forceNextSelectionCheck();
318 this._.editor.selectionChange();