diff --git a/app/index.html b/app/index.html
index 656bc497..48df1faf 100644
--- a/app/index.html
+++ b/app/index.html
@@ -153,9 +153,10 @@
diff --git a/app/js/app.js b/app/js/app.js
index 675914c8..4070c841 100755
--- a/app/js/app.js
+++ b/app/js/app.js
@@ -128,14 +128,17 @@ var ExplorerApp = Backbone.View.extend({
$('.modal.js-import-dialog-url').modal('hide');
var $form = $(e.target);
var source = $form.find('input[name="source"]').val();
+ var datasetInfo = {
+ id: 'my-dataset',
+ url: source,
+ webstore_url: source
+ };
var type = $form.find('select[name="backend_type"]').val();
- var dataset = new recline.Model.Dataset({
- id: 'my-dataset',
- url: source,
- webstore_url: source
- },
- type
- );
+ if (type === 'csv' || type === 'excel') {
+ datasetInfo.format = type;
+ type = 'dataproxy';
+ }
+ var dataset = new recline.Model.Dataset(datasetInfo, type);
this.createExplorer(dataset);
},