Hello,
I came across an issue in Kendo Upload UI for Vue. The tooltip is not getting changed on file drag. I could reproduce the same in the official kendo website.
Please find the screenshot below
select:
function
(e) {
var
element = e.sender.element;
element.attr(
'title'
,
'File selected'
)
},
clear:
function
(e) {
var
upload = e.sender;
var
element = upload.element;
setTimeout(
function
() {
if
(upload.getFiles().length === 0) {
element.removeAttr(
'title'
);
}
});
}