-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Open
Labels
BugC: EditorFP: UnplannedSync status with associated Feedback ItemSync status with associated Feedback Item
Description
Reproduction of the problem
The event is fired only the first time after Editor is rendered.
- Use Inline Editor
- Bind to a non-empty Text property
- When loaded click in the editor and then outside without making changes
View
@model Kendo.Mvc.Examples.Models.Editor.SampleData
@(Html.Kendo().EditorFor(m=>m.Content)
.Tag("div")
.Events(e=>e.Change("onChange"))
)Controller
public IActionResult Inline_Editing()
{
var data = new SampleData() {
Id = 1,
Content = "<p>This is an example of inline editing with Kendo UI Editor.</p>"
};
return View(data);
}Model
public class SampleData
{
public int Id { get; set; }
public string Content { get; set; }
}JavaScript
function onChange(e) {
console.log("Editor content changed.");
}Current behavior
Change event is fired without making changes
Expected/desired behavior
Change event should not be triggered.
TicketID:
1706638
Environment
- Kendo UI version: 2025.4.1217
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
BugC: EditorFP: UnplannedSync status with associated Feedback ItemSync status with associated Feedback Item