Hi Ria,
I am displaying the data in the datatables from a persistent MDO via Servlet. The ILLUMINATOR servlet works fine, returning the data in aaData format. Now, when I use the getJSON function to retrieve the data, the function is not getting called, for eg:
function test()
{
alert("test");
$(document).ready(function() {
alert("before getJson");
alert("inside");
var urlString = "/XMII/CM/Default/testsvt.irpt";
$.getJSON(urlString, function (output)
{
alert("inside getJSON");
});
}
All the alerts prior to getJSON get alerted, but the alert("inside getJSON") doesn't.
Regards,
Rajeev