webix.protoUI({
name: "myComponent",
$init: function (config)
{
//...//
this.$ready.push(this.initComp);
},
initComp: function (config)
{
//...//
this.test; //undefined. Вот тут метод test не вызывается.
},
test: function()
{
console.log("test");
this.test2;
},
test2: function()
{
console.log("test2");
},
}, webix.ui.view);