I have a large xml that i want to upload using the Kendo upload control.
$("#srcFile").kendoUpload({
multiple: true,
async: $scope.asyncsettings,
files: $scope.srcfile,
complete: $scope.srcComplete,
success: $scope.srcSuccess,
upload: $scope.srcUpload,
error: $scope.srcError,
select: $scope.srcSelect
});
How can i upload it using batches . Do i need to put it in the srcUpload routine ?