Documentation

push

add new state to the history

void push(string view,string url,any value);

Parameters

viewstringid of related view
urlstringin-page url for new state
valueanyany related data

See also

Example

webix.history.push("mytabs", "tabs/details" "details");

Details

When refreshing page, the component for which history record stored will be called like

$$(view).setValue(value);
Back to top