Hi all!
So i have Upload on my page:
this one works fine and all events - onUpload and onDocUploaded - firing as expected.
But if i want to add custom messages:
it will break events, and no events (except onComplete) are called in my JavaScript.
I have tested it on Chrome (last version) and IE 9. My KendoUI version is 2013.2.918.
Is there any workarounds?
So i have Upload on my page:
@(Html.Kendo().Upload() .Name("docUpload") .Multiple(false) .ShowFileList(false) .Events(e => e.Upload("onUpload").Success("onDocUploaded")) .Async(a => a .Save("DocUpload", "Documents") .AutoUpload(true) ))But if i want to add custom messages:
@(Html.Kendo().Upload() .Name("docUpload") .Messages(x=>x.Select("Select document...")) .Multiple(false) .ShowFileList(false) .Events(e => e.Upload("onUpload").Success("onDocUploaded")) .Async(a => a .Save("DocUpload", "Documents") .AutoUpload(true) ))I have tested it on Chrome (last version) and IE 9. My KendoUI version is 2013.2.918.
Is there any workarounds?