可使用的虚拟键盘

时间:2018-10-21 05:06:12

标签: jquery html jquery-ui handsontable

我需要在单个应用程序中为不同的单元格使用数字和字符键盘。我正在使用jquery键盘js实现此目的。我可以通过布局( numc,qwertyc ),但是无法更改布局。整个应用程序基于html和js。

afterSelectionEnd: function(instance, col, row, td) {
    //alert(col)
    var n='numc'; //qwerty
    //if(col==0 || col==4){
    if(col==1){
        n='qwertyc';
    }
    this.getActiveEditor().beginEditing();
    keyboardNum(n);       
}, 

function keyboardNum(layouts) { 
    var kb,
    $input = $(':focus');
    if ($input.length) {
        lastInput = $input;
        // close the last keyboard
        kb = lastInput.getkeyboard();

        if (kb) {
            kb.close(true);
        }
        //alert(kb);
        if (!$input.hasClass('.ui-keyboard-input')) {
            $input.keyboard({
                usePreview: false,
                initialFocus: false,
                layout: layouts
            });
        }
        $input.getkeyboard().reveal();
    }
}

0 个答案:

没有答案