Add an API method to manually clear the k-invalid class on labels, allowing developers to reset label validity programmatically without triggering additional events.
Workaround the Label invalid hidden API:
https://stackblitz.com/edit/angular-taa4kx-idl51r?file=src%2Fapp%2Fapp.component.ts
@ViewChild(FloatingLabelComponent) private fl: FloatingLabelComponent;
public resetLabelValidity(): void {
this.fl.invalid = false;
}
To reproduce/see the issue please replace/run the below code in any Kendo - combobox example.
Issue:
step 1: Click inside combobox
Step 2: Press Esc key
Step 3: Start typing combobox items
As a result we can see that label overlaps with value inside combobox which is an issue. Can you please provide some quick resolution on this. Thanks