proxy

creates a proxy object

object proxy(string type,string source, [object config] );
typestringthe type of a proxy object
sourcestringthe url or datasource name
configobjectthe object with the additional logic
objecta proxy object

Example

var rest = webix.proxy("rest", "server/datatable_rest.php");
mytable.load(rest);

Related samples

Details

Possible types of proxy objects are:

  • rest
  • post
  • binary
  • json
  • GraphQL

More information about each proxy can be found in the related article.

See also
Back to top