we updated the filemanager yesterday and noticed a difference in behaviour before when you double clicked in the main window on a folder entry the behaviour changed. before when you double clicked onto it it just navigated into the folder, but now if selects the text. If i even click behind the folder name it will navigate into the folder and highlight all entries in there.
Since i cannot reproduce it in your demo i wonder what caused this difference in behaviour do we now have to explicitly change something to get the “old” behaviour back?
it would be great if we could have the solution from your side.
Does this changed behaviour also impact the grid of files (that is where we expirience the issue)
webix.event($$(“documents”).$view, “onSelectStart”, function (e) {
return false;
});
var fManager = new webix.ui({
container: “content”,
height: 800,
view: “filemanager”,
id: “documents”,
but the event does not get triggered in IE8 and the highlighting is still prsent.
Did i miss something?
I checked the API for onSelectStart but didn’t find a reference for it in datatable just one for onSelectChange, shalli use this one?
I am asking for advise here since it is quite expensive to get the changes tested on IE8 so the more i know up front the less changes i have to push to the testsystem.
Hi,
I now tried the selectStart Event not OnSelectStart.
And on the folder i am double clicking the highlight disappeared but in the folder i enter everything is still highlighted :(.
Hi,
I want to handle double click event on file double click.
I want to call a custom function on double click on file item. I’m not finding any way to handle it. If anyone has some idea please share.