Skip to content

CSV data fails to update on page refresh in IE8 #195

@craig552uk

Description

@craig552uk

Using basic code like that below, updates to the csv data file are not reflected in the browser on a page refresh when using IE8.

  var ds = new Miso.Dataset({
    url: 'data.csv',
    delimiter: ','
  });
  ds.fetch({
    success : function(){
      this.each(function(row){
        console.log(row['field']);
      });
    }
  });

Steps to reproduce:

  1. Load page in IE8, note the field values.
  2. Edit the CSV file, changing some of the values.
  3. Refresh the page in IE8.
  4. Note that the data values have not changed.

The problem is not resolved with either a forced refresh or by clearing the browser cache.

Tested with IE8 on WinXP/Win7
Miso Version: miso.ds.deps.ie.min.0.4.0.js

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions