I want to separate js file in view into different subfolder(module), how can I call order/connection from v.js is a top view
I try to call http://localhost/projectname/#!/v/order/connection it doesn’t work
└───views
│ login.js
│ start.js
│ v.js
│
├───order
│ connection.js
│ prodtype.js
│ size.js
│
└───webix
sidebar.js
{id: "pc", icon: "file-text-o", value: "Order", data: [
{id: "connection", value: "Connection", href: "#!/v/order/connection"}
]},
// app.show("/v/order/" + selection.id);
app.show(selection.href);
Thanks any help.