Opened 16 years ago

Closed 11 years ago

#1803 closed Bug (wontfix)

Creating new columns doesn't handle <col> elements

Reported by: Alfonso Martínez de Lizarrondo Owned by:
Priority: Normal Milestone:
Component: Core : Tables Version: FCKeditor 2.4
Keywords: Cc:

Description

go to source mode and paste this

<table>
    <colgroup><col width="70%"><col width="30%"></colgroup>
    <tbody>
        <tr>
            <td>first</td>
            <td>second</td>
        </tr>
    </tbody>
</table>

switch to design and using the context menu add a new column to the table, switch back to source and you'll see

<table>
    <colgroup><col width="70%"><col width="30%"></colgroup>
    <tbody>
        <tr>
            <td>first</td>
            <td>&nbsp;</td>
            <td>second</td>
        </tr>
    </tbody>
</table>

The colgroup is missing a col for the new column, so the contents might get easily distorted

The behavior isn't browser dependent.

Change History (3)

comment:1 Changed 16 years ago by Frederico Caldeira Knabben

Milestone: FCKeditor 2.7

comment:2 Changed 13 years ago by Wiktor Walc

Component: GeneralCore : Tables

comment:3 Changed 11 years ago by Jakub Ś

Resolution: wontfix
Status: confirmedclosed

No longer reproducible in CKEditor.

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