0

I'm searching for variable name of Jqgrid Ajax Success Result bcoz I added additional data for further processing.

I'm talking about result of the url: I know this is jusing ajax call, but i dont know how jqgrid name its result, for example, sucess: function(result)

jQuery("#list2").jqGrid({
url:'server.php?q=2',
datatype: "json",

Anyone knows whats the result name?

genpet
  • 453
  • 1
  • 9
  • 20

1 Answers1

0

In this post there are some good examples about catching error codes in the result of the Ajax call by defining a loadError function ( demo here, under "New in version 3.2" -> Controling server errors ), and looking at the data that was returned (when there is no error) by adding a loadComplete function.

Community
  • 1
  • 1
Robert Imhoff
  • 471
  • 4
  • 6