When using the MVC extensions we could get hold of the object from within an event using $(this).
With Kendo it seems this is not possible.
We are using one event handler for several Uploaders so we cant respond using code like $("#UploaderID").data("kendoUpload") as we do not know which uploader fired the event
we were able to use code like var row = $(this).closest('tr'); in mvc extensions where $(this) was the Uploader and it worked.
How can we achieve the same thing with Kendo. Would appreciate your help.
With Kendo it seems this is not possible.
We are using one event handler for several Uploaders so we cant respond using code like $("#UploaderID").data("kendoUpload") as we do not know which uploader fired the event
we were able to use code like var row = $(this).closest('tr'); in mvc extensions where $(this) was the Uploader and it worked.
How can we achieve the same thing with Kendo. Would appreciate your help.