its for window
webix.protoUI({
name:"kontakty",
$init:function(){
this.$ready.push(function(){
this.attachEvent("onShow", function(){
this.$view.className = this.$view.className.split("animated")[0] + " animated fadeInRight";
})
this.attachEvent("onHide", function(){
this.$view.style.display = "block";
this.$view.className += " animated fadeOutDown";
})
});
}
}, webix.ui.window);
how this example attach to window alert
webix.alert(greeting + "<br>" +jsonResponse.first_name);
? thx.