Posts

Showing posts with the label Ajax

Recent

Ajax Request with Callback function

// Implementation makeAjaxCall ( "/Controller/Action" ,  "GET" , {  arg1 : "value1" ,  arg2 : "value2" },  "Error loading data !" ,  "error" ,  function ( response ) {    ds  =  response ; }); function   makeAjaxCall ( url ,  methodType ,  jsonData ,  errorText ,  errorType ,  callback ) {    $ . ajax ({      url :   url ,      method :   methodType ,      dataType :   "json" ,      contentType :   'application/json; charset=utf-8' ,      data :   jsonData ,      async :   false ,      success :   function  ( result ) {        result  =  result  ===  null  ? [] :  result ;       ...