Setting "cache" to false means that the query will fetch new data every 
time, even if the data on the back-end hasn't changed since the last query. 
 Setting it to true will cache the results of the query in the browser's 
memory, and it won't fetch new data if the server says nothing has changed. 
 I think you have to set up some kind of cache detection on the server-side 
as well, but I'm not certain of that. 

On Sunday, December 16, 2012 3:40:30 PM UTC-5, Chrystopher Medina wrote:
>
> my friend i did this :
>
>  $.ajax({
>   url: "obtenerrango.php",  //this is when im gonna recieve the values
>   cache: false  //can u explain me this part
> }).done(function( html ) {
>   $("#results").append(html);
> });   
>
>
> it works but this is correct.... it´s the best way to do it.....
>

-- 
You received this message because you are subscribed to the Google Groups 
"Google Visualization API" group.
To view this discussion on the web visit 
https://groups.google.com/d/msg/google-visualization-api/-/G7JHtnuswmcJ.
To post to this group, send email to google-visualization-api@googlegroups.com.
To unsubscribe from this group, send email to 
google-visualization-api+unsubscr...@googlegroups.com.
For more options, visit this group at 
http://groups.google.com/group/google-visualization-api?hl=en.

Reply via email to