Opened 14 years ago
Closed 14 years ago
#6568 closed Bug (fixed)
Bug in table insert row
Reported by: | Alex | Owned by: | Garry Yao |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 3.5.1 |
Component: | Core : Tables | Version: | 3.0 |
Keywords: | IBM | Cc: | satya_minnekanti@… |
Description
Hello!
I've found the bug in release 3.4.1 and in earlier reliases: any attempt to add a row to a table with a cell, splitted horizontally, ruins the table completely. This is a simple example. Create table:
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px">
<tbody>
<tr>
<td rowspan="2">
</td>
<td>
</td>
</tr> <tr>
<td>
</td>
</tr>
</tbody>
</table>
The table has one row and two columns. The right cell is divided horizontally. If you try to add row to the table (before or after existing row - does not matter) - the table corrupts.
That is the story :(
Attachments (3)
Change History (16)
comment:1 Changed 14 years ago by
Keywords: | table insert split removed |
---|---|
Milestone: | → CKEditor 3.4.3 |
Status: | new → confirmed |
Version: | 3.4.1 → 3.0 |
Changed 14 years ago by
Attachment: | 6568.patch added |
---|
comment:2 Changed 14 years ago by
Owner: | set to Garry Yao |
---|---|
Status: | confirmed → review |
comment:3 Changed 14 years ago by
Milestone: | CKEditor 3.4.3 → CKEditor 3.5.1 |
---|
comment:4 Changed 14 years ago by
Summary: | Bug in table insert line → Bug in table insert row |
---|
comment:5 Changed 14 years ago by
Status: | review → review_failed |
---|
delete row/column should be included also, v2 ticket #2813.
Changed 14 years ago by
Attachment: | 6568_2.patch added |
---|
comment:6 Changed 14 years ago by
Status: | review_failed → review |
---|
A completely rewrite of the insert/delete column/row functions that takes care of cell spanning.
comment:7 Changed 14 years ago by
Status: | review → review_passed |
---|
comment:8 Changed 14 years ago by
Status: | review_passed → review_failed |
---|
"insert column after" with the following content and cursor position produces wrong result:
<table border="1" cellpadding="1" cellspacing="1" style="width: 500px;"> <tbody> <tr> <td colspan="2" rowspan="1"> 1</td> <td colspan="1" rowspan="2"> 2^</td> </tr> <tr> <td> 3</td> <td> 4</td> </tr> <tr> <td> 5</td> <td> 6</td> <td> 7</td> </tr> </tbody> </table>
comment:9 Changed 14 years ago by
Component: | General → Core : Tables |
---|
comment:10 Changed 14 years ago by
Cc: | satya_minnekanti@… added |
---|---|
Keywords: | IBM added |
Changed 14 years ago by
Attachment: | 6568_3.patch added |
---|
comment:11 Changed 14 years ago by
Status: | review_failed → review |
---|
comment:12 Changed 14 years ago by
Status: | review → review_passed |
---|
comment:13 Changed 14 years ago by
Resolution: | → fixed |
---|---|
Status: | review_passed → closed |
Fixed with [6328].
Revised 'insertRow' and 'insertCol' to handle cell spanning.