When the user enters invalid data in Grid popup edit form and presses 'Enter' the Save
button becomes disabled. The button does not get enabled even after entering a valid data.
The Save button becomes disabled after a validation failure and cannot be re-enabled.
The Save button should remain enabled or re-enable automatically after validation issues are resolved.
Hello David,
Thank you very much for sharing your approach to work around the issue.
Currently, there is a developer assigned to the issue. Once the fix for the issue passes all tests, a milestone will be set, and the fix will be included in a subsequent release.
Regards,
Neli
Progress Telerik
Love the Telerik and Kendo UI products and believe more people should try them? Invite a fellow developer to become a Progress customer and each of you can get a $50 Amazon gift voucher.
Work around
In your grid: .Events(events => events.Edit("onEdit"))
function onEdit(e) {
var form = e.container;
form.on("change keyup", "input, select, textarea", function () {
enableEditorSaveButton();
});
form.find(".k-widget").each(function () {
var widget = $(this).data("kendoDatePicker")
|| $(this).data("kendoNumericTextBox")
|| $(this).data("kendoDropDownList")
|| $(this).data("kendoComboBox");
if (widget) {
widget.bind("change", enableEditorSaveButton);
}
});
}
function enableEditorSaveButton(e) {I too am having this issue after upgrading to 2025.2.702. This is a deal breaker for me as it's making my app unusable.
Is there a workaround at all?