Data Table Upload Column

Demo uploads land in a temporary store and are swept after 60 minutes. To keep files, handle FileUploaded — see Single File for the complete save pattern.
Data Table Upload Column

Add an upload column to a data table. Each row has its own uploader instance, allowing per-row file attachments in a tabular interface.

What you should see: uploads feeding a data table, with each row's status updated from the completion and error callbacks.
Rows with per-person document upload controls
IDNameDocumentStatus
1Alice Johnson
-
2Bob Smith
-
3Carol Lee
-
// Create one uploader per table row
rows.forEach(function (id) {
 AjaxUploader.create(document.getElementById('rowUpload' + id), {
 uploadUrl: '/ajaxupload.axd/upload',
 multiple: false,
 autoUpload: true,
 onTaskComplete: function (file) {
 document.getElementById('rowStatus' + id).textContent = file.name;
 }
 });
});