如何在elFinder中检测多个选择

时间:2013-11-27 19:32:40

标签: javascript elfinder

我向elFinder添加了一个新的工具栏按钮和一个新的上下文菜单项。

很好地工作,但只有在选择一个普通文件时才应启用此项。因此,当没有选择文件时应该变暗,当选择多个文件或者选择目录时应该变暗。

我了解到elFinder.prototype.commands.mycmd我应该将this.getstate返回值设置为:

  • 0如果应启用工具栏/上下文菜单项并
  • -1是否应禁​​用

所以,现在有了这个:

EL

Finder.prototype.commands.mycmd= function() {

    var self  = this,
        fm    = self.fm;

    self.disableOnSearch = true;

    self.title = 'mycmd';

    self.getstate = function() {
            // need help here to add the "directory is selected check"
        return fm.selected().length == 1 ? 0 : -1;
    }

    self.exec = function() {
        alert("hello");
    }
}

不幸的是,我只知道Perl,所以通过所有elFinder的javascript代码挖掘出来以了解如何掌握这个条件有点困难。

深入了解任何人elFinder以帮助我解决这个问题?

1 个答案:

答案 0 :(得分:2)

只需在elFinder download.js中找到解决方案。

这有效 - 至少现在......;)

elFinder.prototype.commands.mycmd= function() {

    var self  = this,
        fm    = self.fm;

    self.disableOnSearch = true;
    filter = function(hashes) {
        return $.map(self.files(hashes), function(f) { return f.mime == 'directory' ? null : f });
    };

    self.title = 'mycmd';

    self.getstate = function() {
        var sel = self.fm.selected(),
        cnt = sel.length;
        return  !self._disabled && cnt == 1 && cnt == filter(sel).length ? 0 : -1;
    }

    self.exec = function() {
        alert("hello");
    }
}