Hi all,
Current version: Application Express 19.1.0.00.15
I am getting the fowling error on a very simplw apex.server.process call and I cannot figure out what is happening.
Error: SyntaxError: Unexpected end of JSON input
How can I go about troubleshooting this?
As usual, any comments, tips, suggestions are greatly appreciated.
Thanks,
Jake
==>
apex.message.clearErrors();
apex.message.confirm("Les items seront importés au borderau. Désirez vous continuer?",
function( okPressed ) {
if( okPressed ) {
//alert("Ok a été cliqué");
apex.server.process("CBImporterItemsBordereau",
{pageItems:"#P21_SOUS_PROJET_SPD,#P21_INDIC_SUPPRESSION_ON"
},
{success: function()
{alert("Les données ont été importées avec succès");
apex.navigation.dialog.cancel(true);
}
}
)
} else {
alert("Annuler a été cliqué");
}
});
<==