how develop a one page App

hi,I think that i develop a one page app. if click a link of left menu,show a componet in right. if click another link of left menu,remove old componet from right,show a new componet.
I don’t it. please help me.

The simplest solution - use multiview which contains all components and show necessary view on selection.

Check the next example
http://snippet.webix.io/3f19b582

thank you.but how do implement history back function.

There are two ways

a) you can use webix.history functionality

webix.history.track("mview", "a1");

You can check this sample, beware it will not work in snippet viewer, because it creates preview in specific way, but will work on standalone page.

http://snippet.webix.io/f67f16cd
http://docs.webix.com/api__history_track.html

b) You can use one of major MV* frameworks - Backbone or Angular. Webix can be integrated with both of them

http://docs.webix.com/desktop__angular.html
http://docs.webix.com/desktop__backbone_routers.html

Another option that I use is the use of an ajax call to a controller (or script, etc). The output is just a piece javascript that builds the rest of the webix controls, contained in a div. In large apps this prevents the loading of all the grids all at once.