Opened 14 years ago

Closed 12 years ago

#4949 closed Bug (fixed)

Inserting table column results in wrong colspan

Reported by: Tobiasz Cudnik Owned by:
Priority: Normal Milestone:
Component: Core : Tables Version: 3.0
Keywords: Cc:

Description

Inserting table column results in wrong colspan.

Reproduce

  1. Use following content:
    <table>
    	<tbody>
    		<tr>
    			<td colspan="2">
    				TD</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
  2. Right click on first cell "TD" and choose "Column -> Add column after".
  3. Result
    <table>
    	<tbody>
    		<tr>
    			<td colspan="2">
    				TD</td>
    			<td colspan="2">
    				&nbsp;</td>
    		</tr>
    		<tr>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    			<td>
    				&nbsp;</td>
    		</tr>
    	</tbody>
    </table>
    
  4. Expected: New column should be added in first row without colspan="2".

Change History (3)

comment:1 Changed 14 years ago by Frederico Caldeira Knabben

Milestone: CKEditor 3.x

Milestone CKEditor 3.x deleted

comment:2 Changed 13 years ago by Wiktor Walc

Component: GeneralCore : Tables
Version: SVN (CKEditor) - OLD3.0

comment:3 Changed 12 years ago by Jakub Ś

Resolution: fixed
Status: newclosed

This ticket is no longer reproducible in latest CKEditor 3.6.2

Note: See TracTickets for help on using tickets.
© 2003 – 2022, CKSource sp. z o.o. sp.k. All rights reserved. | Terms of use | Privacy policy