Opened 16 years ago
Closed 13 years ago
#2800 closed Bug (invalid)
Wrong colspan after deleting column
Reported by: | Koen Willems | Owned by: | |
---|---|---|---|
Priority: | Normal | Milestone: | |
Component: | Core : Tables | Version: | FCKeditor 2.4 |
Keywords: | Cc: |
Description
Take a 3 * 2 table like this:
<table title="tabel" cellspacing="0" cellpadding="0" summary="table"> <thead> <tr> <th scope="col">1</th> <th scope="col">2</th> </tr> </thead> <tbody> <tr> <td>a</td> <td>b</td> </tr> <tr> <td colspan="2">c</td> </tr> </tbody> </table>
Now right click in cell b and delete that column. You will see that the colspan of cell c is not lowered (or, in this case, removed).
Attachments (2)
Change History (6)
Changed 16 years ago by
Attachment: | 2800.patch added |
---|
comment:1 Changed 16 years ago by
Keywords: | Confirmed added |
---|---|
Version: | → FCKeditor 2.4 |
comment:2 Changed 16 years ago by
Changed 16 years ago by
Attachment: | 2800_2.patch added |
---|
comment:3 Changed 14 years ago by
Component: | General → Core : Tables |
---|
comment:4 Changed 13 years ago by
Resolution: | → invalid |
---|---|
Status: | confirmed → closed |
FCKeditor was retired and is no longer supported. All active development was moved to its successor, CKEditor 3.x, that is a fully mature and far superior product. We recommend you upgrade as soon as possible since this issue is no longer a problem in current code base.
I stumbled upon problems with deleting a column in a table like this:
So, I did some dirty trick in the previous patch. By the way, the new patch is only working in conjunction with this patch: http://dev.fckeditor.net/attachment/ticket/2859/2859.patch