0

In the documentation at http://manual.qooxdoo.org/current/pages/communication/rest.html is stated that:

Handlers receive a qx.event.type.Rest event that, among other properties, includes the response.

But there is no response in qx.event.type.Rest - http://demo.qooxdoo.org/current/apiviewer/#qx.event.type.Rest

How to get that response?

Hristo Hristov
  • 4,021
  • 4
  • 25
  • 37

1 Answers1

1

You have to use the request object to access the response. The request object will return a qx.io.request.AbstractRequest [1] which will include some methods to query the response.

[1] http://demo.qooxdoo.org/devel/apiviewer/#qx.io.request.AbstractRequest

Martin Wittemann
  • 2,109
  • 1
  • 12
  • 14