excel-bootstrap-table-filter icon indicating copy to clipboard operation
excel-bootstrap-table-filter copied to clipboard

Auto "Focus" when click on "dropdown-filter-dropdown" icon

Open RrOoSsSsOo opened this issue 6 years ago • 1 comments

It isn't a real issue but a very usefull feature! With this code into .js is possible to obtain the desidered behaviour

From:

FilterMenu.prototype.initialize = function () {
    ...
    $trigger.click(function () {
        return $content.toggle();
    });
    ...

To:

FilterMenu.prototype.initialize = function () {
    ...
    $trigger.click(function () {
        $content.toggle();
        $menu.find("input[type=text]").focus();
        return;
    });
    ...

RrOoSsSsOo avatar Jun 14 '18 12:06 RrOoSsSsOo

feel free to make a pull request :)

chestercharles avatar Aug 17 '18 20:08 chestercharles