Hi,
  I'm trying to attach a virtual keyboard to a combobox and I can't seem to figure out how to 
get it to work.
The following code works
   $("span.textbox.easyui-fluid.numberbox > .textbox-prompt").focus(function() {
         $(this).getkeyboard().showKeySet("meta1");
   });
but as soon as add this
$('#PType').combobox({
                onSelect: function(rec){
                    console.log(JSON.stringify(rec))
                }
            });
  It no longer works.
Any suggestions would be great.
Cheers!