Solution:
This _=1375342185703 is appended by jQuery.ajax which the Kendo DataSource
uses under the hood. That thing is used as a cache buster (prevents browser
caching). The fix is simple - disable jQuery caching:
transport: {
read: {
url: "your service",
dataType: "jsonp",
cache: true // enable caching which disables the cache buster
}
}
--
---
You received this message because you are subscribed to the Google Groups
"web2py-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email
to [email protected].
For more options, visit https://groups.google.com/groups/opt_out.