-
Bug
-
Resolution: Fixed
-
Blocker
-
3.5.5
-
None
Filter on images doesnt work, and the wiget is unusable
As a workaround the script below disable the image filter :
org.ametys.web.helper.ExplorerTree.TreeFilter = Ext.extend (Ext.tree.TreeFilter, {
clear : function(node)
{
node = node || this.tree.getRootNode();
var t = this.tree;
var af = this.filtered;
for(var id in af)
{
if(typeof id != "function")
{
var n = af[id];
if (n && n.getOwnerTree() && n.getPath('name').indexOf(node.getPath('name')) == 0)
{
delete af[id];
n.ui.show();
}
}
}
}
});