4751573f6062da85435e345520a7525e91a897eaAllen RabinovichYUI({
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich base: '../../../../build/',
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich lang: "en",
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich filter: "debug",
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich debug: true,
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich useBrowserConsole: true
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich}).use('node', 'file', function(Y) {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovichvar myuploadfield = Y.one("#fileupload").on("change", function (ev) {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich var myfiles = ev.target.getDOMNode().files;
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich var myfile = new Y.File({file: myfiles[0]});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.log(myfile.get("size"));
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.log(myfile.get("name"));
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.log(myfile.get("dateModified"));
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.log(myfile.get("type"));
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.log(myfile.get("html5"));
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.one("#startupload").on("click", function () {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.startUpload("upload.php", {foo: "bar", bar: "bazz", etc: "mooha"});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich });
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich Y.one("#cancelupload").on("click", function () {
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.cancelUpload();
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich })
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.on("uploadprogress", Y.log);
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.on("uploadcomplete", Y.log);
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.on("uploadcancel", Y.log);
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich myfile.on("uploaderror", Y.log);
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich});
4751573f6062da85435e345520a7525e91a897eaAllen Rabinovich