How to get data attribute value on file select event.
Note: Here i am trying to resolve current html to get jQuery object
$("#gridAttachment").find("input.fileUpload").each(function (index) {
$(this).kendoUpload({ select: onAttachmentSelect });
});
function onAttachmentSelect(e) {
//debugger;
var id = $('thisObj').data('id');
//Some other Data Attribute Value
//After validation jQuery AJAX Upload
};