I have a list in dashcode where I update a parameter for the datasource and tell the list to reload. The code is fully functional when view from Safari but the reload command does not appear to work when the same page is viewed in Firefox. The code I am using to update my data source is:
dataSource.setValueForKeyPath("keyboard/build/", "parameters.directory");
var list= document.getElementById('list');
list.object.reloadData();
Is there a different command I need to send for firefox to reload the list?