Documentation

track

remember the currently open tab to show it after page refresh

void track(string view,string url);

Parameters

viewstringID of the switching control (tabbar, segmented) or tabview ID.
urlstringhashbang url loaded after refresh. If not stated, the last opened tab URL is loaded.

See also

Example

webix.history.track('tabbar');

Details

Each time you click the tab to switch for another cell, a hashbang URL is generated on the base of cell ID (under http://current_url.html#!/cellID pattern) and memorized. You'll see them in the address bar of your browser.

Back to top