Opened 12 years ago

Closed 12 years ago

#8762 closed Bug (invalid)

Empty table cells are not visible

Reported by: sukanya Owned by:
Priority: Normal Milestone:
Component: General Version:
Keywords: Cc:

Description

1:Click on ' Table' icon & select any number of rows and columns ( 3 rows & 2 columns)

  1. Enter any data in table rows and columns leaving any cells ( Ex: Leave last 2 cells as empty in 2nd & 3rd rows as shown in attached screenshot)
  2. Click on 'Save' button
  3. Observe the Table inserted in Content pane ( The cells do Not display in which data is empty)

Attachments (1)

Data.docx (309.7 KB) - added by sukanya 12 years ago.

Download all attachments as: .zip

Change History (3)

Changed 12 years ago by sukanya

Attachment: Data.docx added

comment:1 Changed 12 years ago by sukanya

when we click source editor it showing <html>

<head>

<title _cke_title=""></title>

</head> <body><img src="http://generic.testmail.com/1x1.dyn" width="1" height="1" border="0"><!--POST

/* EDITOR INSERTED BEGIN */ /* EDITOR INSERTED END */ POST--></div>

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; height: 123px;">

<tbody>

<tr>

<td>

sdaf</td>

<td>

dsfas</td>

</tr> <tr>

<td> </td> <td>

sdfas</td>

</tr> <tr>

<td>

sdf</td>

<td> </td>

</tr>

</tbody>

</table>

</body>

</html>

But we are expecting the table should be <html>

<head>

<title _cke_title=""></title>

</head> <body><img src="http://generic.testmail.com/1x1.dyn" width="1" height="1" border="0"><!--POST

/* EDITOR INSERTED BEGIN */ /* EDITOR INSERTED END */ POST--></div>

<table border="1" cellpadding="1" cellspacing="1" style="width: 500px; height: 123px;">

<tbody>

<tr>

<td>

sdaf</td>

<td>

dsfas</td>

</tr> <tr>

<td>

&nbsp;

</td> <td>

sdfas</td>

</tr> <tr>

<td>

sdf</td>

<td>

&nbsp;

</td>

</tr>

</tbody>

</table>

</body>

</html>

comment:2 Changed 12 years ago by Jakub Ś

Resolution: invalid
Status: newclosed

This is the consequence of using config.fillEmptyBlocks = false;

Some browsers like IE6 or IE7 don’t respect empty td and don't display them.

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