Setup:
I have a Datatable, whose each row is clickable. When a row is clicked, an ajax call is made which returns some data. Sometimes the ajax call takes a little time, depending on the amount of data being returned. It is all working fine.
Problem:
The problem occurs when the rows are clicked quickly, one after the other. In short, before the previous ajax call returns, if the row is clicked (i.e. a new ajax call is made), I get an error.
Uncaught TypeError: Property 'callback' of object [object Window] is not a function
(The ajax call returns a JSONP data)
It looks like somehow the ajax calls are getting mingled (?), but I am not sure of this. Can anyone please tell me why does this happen?
Please let me know if any more information is required to clarify the issue.
Thanks
EDIT 1:
Here is some ajax code:
$.ajax({
type: "GET",
url: 'http://' + myserver + ':8080/someurl/' + my_param,
contentType: "application/json",
dataType: "jsonp",
jsonpCallback: 'callback',
success: function(data) {
// Inside here, I am doing some Datatables stuff.
var myTable = $('#my_table').dataTable( {
"bJQueryUI" : true,
"bSort" : false,
"bFilter" : false,
"bPaginate": true,
"bProcessing": true,
"bScrollCollapse": true,
"bInfo": false,
"bDestroy": true,
"aaData": samples,
"sEmptyTable": "No sample listings avaiable",
"iDisplayLength": number,
"bLengthChange": false,
"bAutoWidth": false,
.
.
.
}
EDIT 2:
Here is the class which is assigning the callback
its name. If the default callback is null, then it assigns a default value, "callback". But looks like somehow the default callback is always null and hence it always assigns "callback".
public class MappingJacksonJsonpConverter extends MappingJacksonHttpMessageConverter {
@Override
protected void writeInternal(Object object, HttpOutputMessage outputMessage) throws IOException,
HttpMessageNotWritableException {
JsonEncoding encoding = getJsonEncoding(outputMessage.getHeaders().getContentType());
JsonGenerator jsonGenerator = this.getObjectMapper()
.getJsonFactory()
.createJsonGenerator(outputMessage.getBody(), encoding);
try {
String jsonPadding = "callback";
if (object instanceof JsonObject) {
String jsonCallback = ((JsonObject) object).getJsonCallback();
if (jsonCallback != null) {
jsonPadding = jsonCallback;
}
}
jsonGenerator.writeRaw(jsonPadding);
jsonGenerator.writeRaw("(");
this.getObjectMapper().writeValue(jsonGenerator, object);
jsonGenerator.writeRaw(")");
jsonGenerator.flush();
} catch (JsonProcessingException ex) {
throw new HttpMessageNotWritableException("Could not write JSON: " + ex.getMessage(), ex);
}
}
}
And the above class is being referenced in mvc-servlet.xml
as follows:
<mvc:message-converters>
<bean
class="citygrid.feedmanager.web.converter.MappingJacksonJsonpConverter">
<property name="supportedMediaTypes">
<list>
<value>application/x-javascript</value>
</list>
</property>
</bean>
</mvc:message-converters>