Editor autocomplete plugin does not accept mouse selection with inline mode

Editor autocomplete plugin does not accept mouse selection with inline mode

NovidisNovidis Posts: 11Questions: 2Answers: 0

Editor autocomplete plugin in inline mode does not accept selection with mouse,
selection with keyboard works fine.
In popup mode everything works fine.
Please refer to the following sample page: http://http://212.237.44.11:52531/test_plugin

This question has an accepted answers - jump to answer

Answers

  • kthorngrenkthorngren Posts: 20,302Questions: 26Answers: 4,769
    Answer ✓

    I moved your code to this test case:
    http://live.datatables.net/jilocuda/1/edit

    Changed your inline edit config to this:

        $('#example').on( 'click', 'tbody td:not(:first-child )', function (e) {
            editor.inline( this, {
                onBlur: 'submit'
            } );
        } );
    

    It seems to work with onBlur: 'submit'.

    Kevin

  • NovidisNovidis Posts: 11Questions: 2Answers: 0

    Now it's ok for me
    thanks

This discussion has been closed.