Webix Jet

Is there a way to load the webix jet urls programmatically?

currently I have only seen click properties and href links being able to do that.

for instance here is my icon click handler:

click:“location.href=’#!top/start/settingsTabView/advancedStatusView’”

nevermind I found it. I call this method within the oninit of the parent view.
It allows me to insert views into the parent programmatically. This is particularly helpful if I want to conditionally add them.

$scope.show("./advancedStatusViewCollapsed");