When I access the source, and insert a basic select tag, CKEditor munges it after loading.

Here is what I put in.

<select>
  <option value="volvo">Volvo</option>
  <option value="saab">Saab</option>
  <option value="mercedes">Mercedes</option>
  <option value="audi">Audi</option>
</select>

Then when I switch back to the rich text editor it looks good for about 1 second. After that, 1 second is shrinks.

Then it looks like this.

If I double click on it, you can see clearly that it's broken the select box.

This is what CKEditor turns it into after saving. Obviously this is wrong.

<p><select><option selected="selected" value="">VolvoSaabMercedesAudi</option></select></p>

This problem seems to be directly related to the fact that I put non-numeric characters (letters) inbetween the .

These two work properly.

<select>
<option value="1">1</option>
<option value="2">2</option>
<option value="3">3</option>
<option value="4">4</option>
</select>
<select><option value="Volvo">1</option>
<option value="blah">2</option>
<option value="bar">3</option>
<option value="foo">4</option>
</select>

But this causes the same problem shown in the above screenshots.

<select><option value="Volvo">a1</option>
<option value="blah">2</option>
<option value="bar">3</option>
<option value="foo">4</option>
</select>

If I put all three of the above code segments in here is what I get. Two combo boxes (left, and middle) that work properly. One on the right that does not work. This is the select box editor opened up on the rightmost select box.

CommentFileSizeAuthor
004.png45.89 KBJazzepi
003.png37.6 KBJazzepi
002.png37.47 KBJazzepi
001.png37.78 KBJazzepi

Comments

mkesicki’s picture

Status: Active » Postponed (maintainer needs more info)

Please check if this problem exists on CKEditor demo page (http://ckeditor.com/demo).
Which version of CKEditor library do you use ?

Jazzepi’s picture

I'm using CKEditor 3.6.1 and the Drupal module that runs it is CKEditor 6.x-1.8

I can not reproduce the problem on the demo page.

dczepierga’s picture

In the demo page is CKEditor 3.6.2, so pls try to update to new version and report here does it work or not...

Greetings

Jazzepi’s picture

Upgraded to the new version of CKEditor and I still have the same issue with the same input.

dczepierga’s picture

@Jazzepi, i try to do this with last DEV version, CKEditor 3.6.2 and i cannot reproduce this issue...
Which browser do u use?

Greetings

Jazzepi’s picture

I can reproduce this problem with Firefox 7.0.1 and Chrome 16.0.912.63 m

I can NOT reproduce this problem with IE Version: 9.0.8112.16421 UpdateVersion: 9.0.4

dczepierga’s picture

I try this with this same version of Chrome, FF 8.0.1 and IE9 - for me everything works fine.

Could u make a clean install of Drupal, install last DEV version of CKEditor module and check this again?

Greetings

dczepierga’s picture

Issue summary: View changes

closed code tag