There is a code snippet in the _removeDescribedBy method
arrayAttr = target.attr (DESCRIBEDBY) .split (
''
)
In a specific, unknown situation, undefined is returned from the attr method, which generates an error with the following content:
Uncaught TypeError: Cannot read property 'split' of undefined
The solution is simple:
arrayAttr = (target.attr (DESCRIBEDBY) ||
''
) .split (
''
)
Is it possible for the next version of kendo.ui to appear in all places where such a fragment of the code is protected against unedfined?