Hi. Firefox 24 on Windows Vista, same issue also on Windows 7 x 64 and Windows 8 x 64. I've just tested on Ubuntu 13.04 and still the same.
El domingo, 13 de octubre de 2013 02:07:21 UTC-3, asgallant escribió: > > I can't duplicate the error (using FF v24.0 on Windows 8 x64). What > version and OS are you using? If you are using an older version of > Firefox, does upgrading fix the problem? > > On Saturday, October 12, 2013 4:07:28 PM UTC-4, Matt wrote: >> >> Hi I will post my js code as an example, but be aware that the examples >> related to Data Sources in the Google Visualization playground throw the >> same error: >> >> http://code.google.com/apis/ajax/playground/?type=visualization#data_source_request >> >> I´ve tried several solutions with no luck like: >> >> http://stackoverflow.com/questions/3719866/google-visualization-piechart-linechart-jquery-ajax-firefox-issue >> >> Please help. >> >> Regards. >> >> Matt >> >> >> // Load the Visualization API and the required packages in my case >> corechart and controls. >> google.load('visualization', '1.0', {packages: ['corechart', >> 'controls']}); >> // Set a callback to run when the Google Visualization API is loaded. >> google.setOnLoadCallback(drawVisualization); >> >> function drawVisualization () { >> var query = new google.visualization.Query(' >> https://docs.google.com/spreadsheet/ccc?key=notRelevant-all-remote-data-sources-produce-the-same-error' >> ); >> >> query.setQuery('SELECT A, B, C, D, E, F,G,H,I,J,K,L,P,N,O'); >> >> query.send(function (response) { >> if (response.isError()) { >> alert('Error in query: ' + response.getMessage() + ' ' + >> response.getDetailedMessage()); >> return; >> } >> var data = response.getDataTable(); >> >> // Create a Callsign filter control >> var filter = new google.visualization.ControlWrapper({ >> 'controlType': 'CategoryFilter', >> 'containerId': 'control_div', >> 'options': { >> 'filterColumnIndex': 0, >> "filterColumnLabel" : "Callsign", >> 'ui': { >> "label" : "", >> 'caption' : 'Callsign', >> 'allowTyping': false, >> 'allowMultiple': true >> } >> }, >> 'state': {'selectedValues': ['None']} >> }); >> >> >> // Create a Contest filter control >> var filterContest = new google.visualization.ControlWrapper({ >> 'controlType': 'CategoryFilter', >> 'containerId': 'controlFilContest_div', >> 'options': { >> 'filterColumnIndex': 5, >> "filterColumnLabel" : "Contest", >> 'ui': { >> "label" : "", >> 'caption' : 'Contest', >> 'allowTyping': false, >> 'allowMultiple': true >> } >> }, >> 'state': {'selectedValues': ['None']} >> }); >> >> >> >> // Create a Table visualization >> var cTable = new google.visualization.ChartWrapper({ >> chartType: 'Table', >> containerId: 'table_div', >> options: {allowHtml: true} >> }); >> >> >> // Create the dashboard. >> var dashboard = new >> google.visualization.Dashboard(document.getElementById('dashboard')). >> // Configure the string filter to affect the table contents >> bind([filter,filterContest],[cTable]). >> // Draw the dashboard >> draw(data); >> }); >> } >> >> >> -- You received this message because you are subscribed to the Google Groups "Google Visualization API" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-visualization-api. For more options, visit https://groups.google.com/groups/opt_out.
