Problem with application url when using FileManager

Hi, I’m using webix (v6.4) in a .Net MVC Environment and I’ve an issue with my application url and the component FileManger (actually I’m using only this component).

Before loading the component the url of my page is (for instance): http://my.applicationurl.com/xyz/controller/detail/123456456

When the component is fully loaded the application url of my page change as this:
http://my.applicationurl.com/xyz/#!/folder_root_id

Why I’m loosing the controller/action part of the url?

Obviously I cannot deal with this kind of url for many reason, first of all the user cannot simply press F5 to reload the page because the source url has been turned to nothing.

Thanks in advance,
J.

Am I wrong in assuming that you are using Webix Jet? If you are, then the reasons for this can be various. Without seeing the source code, or at least a snippet with a similar issue it is very hard to tell what the issue exactly is.

Solved setting disabledHistory = true

webix.ui({
view:“filemanager”,
id:“files”,
disabledHistory: true

});

Please note that the disabledHistory API will become deprecated in Webix 7.0 and above, you can get more specifics from our article mentioning all of the deprecated APIs (it also mentions a workaround, if you do need it): Farewell to the Old Year, Farewell to the Old Code: Looking Forward to 7.0.

Ok, thank you!