Skip to Content
मेन्यू
This question has been flagged
3295 Views

I am trying set hotkey (ctrl + x) to focus input text but it doesn't work.
My code here:

<html>

<input id="text_input" type="search" class="form-control shadow-none" placeholder="Search...."
</input>

<JS>

    Widget.extend({
        template: 'systray_odoo_search.search_icon',           
        events: {
            'keydown': '_onKeydown_searchFocus',
            // 'show.bs.dropdown': '_onActivityMenuShow',
            // 'hide.bs.dropdown': '_onActivityMenuHide',
        },
    _onKeydown_searchFocus: function (e) {
            var self = this;
            if (e.ctrlKey && e.keyCode == 'X'.charCodeAt(0)) {
                self.$('#text_input').focus();
                e.preventDefault();
            }
        },

Avatar
Discard
Related Posts Replies Views Activity
0
फ़र॰ 18
3540
0
सित॰ 17
4388
2
नव॰ 15
860
1
फ़र॰ 24
12219
0
मार्च 15
516