Documentation

response

sets response type of the request

void response(string type );

Parameters

type stringresponse type

See also

Example

webix.ajax().response("blob").get("patch.zip", function(text, data){
  //data - is a data blob
});

Details

Possible values to pass into this method are:

  • "blob" - binary data object (fully supported)
  • "document" - web page object
Back to top