I'm developing our first Kendo Mobile app and run into an issue with Safari in iOS7.
When I perform a $.ajax request (see below) to verify the usercredentials, the iPhone/iPad Network Activity Indicator starts spinning and does not stop. The indicator even keeps spinning after I shutdown webpage with the Kendo app. I have to remove the websitedata via the Settings menu to stop the Indicator from spinning.
var request = $.ajax({
url: webapiEndpoint() + '/authenticate/login?' + urlParameters,
type: 'GET',
contentType: "application/json",
data: '',
dataType: 'json',
processData: false
});
request.done(function ( data ) {
app.navigate(activePage);
});
request.fail(function ( error ) {
app.navigate(loginPage);
});
The $ajax request receives the correct response from the WebApi and shows the appropriate page. Are you aware of any issue with iOS7 Safari that causes this strange behavior? Other $.ajax requests result in the same issue, so it is not this specific request that is causing the problem.
When I perform a $.ajax request (see below) to verify the usercredentials, the iPhone/iPad Network Activity Indicator starts spinning and does not stop. The indicator even keeps spinning after I shutdown webpage with the Kendo app. I have to remove the websitedata via the Settings menu to stop the Indicator from spinning.
var request = $.ajax({
url: webapiEndpoint() + '/authenticate/login?' + urlParameters,
type: 'GET',
contentType: "application/json",
data: '',
dataType: 'json',
processData: false
});
request.done(function ( data ) {
app.navigate(activePage);
});
request.fail(function ( error ) {
app.navigate(loginPage);
});
The $ajax request receives the correct response from the WebApi and shows the appropriate page. Are you aware of any issue with iOS7 Safari that causes this strange behavior? Other $.ajax requests result in the same issue, so it is not this specific request that is causing the problem.