Primarily, we have an issue where our select function is not being triggered after a user has selected a file.
As shown above, the elemental bindings are conjured. In all cases to date, the select function works as expected. I've even dug around to prove that the kendoUpload object does, in fact, have the select property set. Problem is, as our QA just pointed out today, nothing ever happens in IE8 when a user makes a selection. I was hoping the fix would be something on my end, however it appears as though there's something more to it and I'd like to pose this to you and your team. Thanks.
$(
'#file'
).kendoUpload({
async: { ... },
select:
function
(e) {
// Do things in here
}
});