Documentation

proxy

creates proxy object

object proxy(string type,string source);

Parameters

typestringtype of proxy object
sourcestringurl or datasource name

Returns

objectproxy object

Example

var proxy = webix.proxy("cache", "users/data.php");
mytable.load(proxy);

Back to top