javascript - JQuery Virtual Keyboard and Datatables.js search filter box not updating on user input -
i have datatables.js application works allongside jquery virtual keyboard. when using virtual keyboard enter information generated search box, filtered content not work. meaning if have column names , search name(e.g airi) virtual keyboard, information inside datatables not updated. if remove it works. the code using datatable following: $(document).ready(function(){ $('.selectpicker').selectpicker(); $('#example').datatable(); // example virtual keyboard on datatable search // shows keyboard content not filtered function virtualksearch() { $('input[type="search"]').keyboard({ layout: 'qwerty', draggable: true, position: { of : $(window), : 'center bottom', @ : 'center bottom', at2: 'center bottom' }, change: function(e, keyboard, el) { ...