I've been using CKEditor for a long time to allow my client to maintain a list of calendar events in a table. When she adds an event, she usually right-clicks in one of the table cells and selects "Add Row Below" or "Add Row Below", then puts the information in the blank cells in the new row.
Recently, this has not been working. "Add Row" just seems to put a little space above or below the row cell she was in when she added the new row. Any ideas for the changed behavor? I have replicated the problem on several browsers.
Thanks in advance,
Mike
Table in the table?
What does the source look like? - Perhaps she has accidently created a little table inside a cell and when she adds a row, it is added to that nested table.
The problem was....Extraneous <TR></TR> tags after <TBODY>
Your post prompted me to poke around in the code and I found this:
<tbody>
<tr>
</tr>
<tr>
<td>
<h2>November 2014</h2>
</td>
<td> </td>
</tr>
After I removed the empty <tr></tr> pair after <tbody>, it fixed the problem!
Thanks 1000K!