Ticket #8257: tableCell.patch

File tableCell.patch, 1.1 KB (added by Martin, 13 years ago)
  • tableCell.js

    old new  
    382382                                                                                                        selectedCell.removeAttribute( 'colSpan' );
    383383                                                                                        }
    384384                                                                                },
     385                                                                                {
     386                                                                                        type : 'text',
     387                                                                                        id : 'cssClass',
     388                                                                                        label : editor.lang.common.cssClass,
     389                                                                                        'default' : '',
     390                                                                                        setup : function( selectedCell )
     391                                                                                        {
     392                                                                                               this.setValue( selectedCell.getAttribute( 'class' ) || '' );
     393                                                                                        },
     394                                                                                        commit : function( selectedCell )
     395                                                                                        {
     396                                                                                               if ( this.getValue() )
     397                                                                                                       selectedCell.setAttribute( 'class', this.getValue() );
     398                                                                                               else
     399                                                                                                       selectedCell.removeAttribute( 'class' );
     400                                                                                        }
     401                                                                               },                                                                               
    385402                                                                                spacer,
    386403                                                                                {
    387404                                                                                        type : 'hbox',
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy