Opened 11 years ago
Last modified 11 years ago
#11753 closed Bug
CheckDirty is true after clicking a widget, but getData() returns the same — at Version 5
Reported by: | Joel | Owned by: | Artur Delura |
---|---|---|---|
Priority: | Normal | Milestone: | CKEditor 4.4.2 |
Component: | General | Version: | 4.3 |
Keywords: | Cc: |
Description (last modified by )
In Chrome33 and IE9, the checkDirty() method returns true after a widget drag handle has appeared, even though nothing has changed.
- Open Developers console
- Go to http://ckeditor.com/demo#widgets
- Run CKEDITOR.instances.editor3.checkDirty(); in console
--> returns false
- Run var d1 = CKEDITOR.instances.editor3.getData(); in console
- Click on the apollo picture in the 2nd editor, but do not move it.
- Run CKEDITOR.instances.editor3.checkDirty(); in console
--> returns true
- Run var d2 = CKEDITOR.instances.editor3.getData(); in console
- run d1 === d2 in console
--> returns true
I know this is a battle between getData() vs getSnapshot() vs _.previousValue, but as far as I can see, it is unexpected behaviour. Shouldn't checkDirty() work with getData() especially when there are widgets involved?
Switching to source mode and back does not help.
Bonus: In Chrome CKEDITOR.instances.editor4.checkDirty(); is always true after page has loaded.
Change History (5)
comment:1 Changed 11 years ago by
Status: | new → confirmed |
---|---|
Version: | → 4.3 |
comment:2 Changed 11 years ago by
Owner: | set to Artur Delura |
---|---|
Status: | confirmed → assigned |
comment:3 Changed 11 years ago by
or every single time DOM we change something irrelevant in the DOM we need to reset checkDirty to correct state
What if some other part of code e.g. custom plugin changes dirty state at the same time (and relies on it)? If such thing happens then, not only it breaks custom plugin but also our onchange is becoming more and more useless.
comment:4 Changed 11 years ago by
Other plugins should not rely on the dirty flag. It is only for integration purposes. Other plugins should only take care of not changing it when it shouldn't be changed. Just like in this case - the flag should not be change to true when widget is focused or blurred.
comment:5 Changed 11 years ago by
Description: | modified (diff) |
---|
There's no integration between widgets and checkDirty at all. Honestly speaking, we've got a problem with checkDirty, because whatever we do with DOM it yields. And with widgets we do a lot.
So either we'll reimplement it (only possible with undo manager...), or every single time DOM we change something irrelevant in the DOM we need to reset checkDirty to correct state.