EasyUI Forum

General Category => EasyUI for jQuery => Topic started by: Tomas on May 11, 2020, 06:30:55 AM



Title: combobox focus -
Post by: Tomas on May 11, 2020, 06:30:55 AM
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
Code:
   $("span.textbox.easyui-fluid.numberbox > .textbox-prompt").focus(function() {
         $(this).getkeyboard().showKeySet("meta1");
   });

but as soon as add this
Code:
$('#PType').combobox({
                onSelect: function(rec){
                    console.log(JSON.stringify(rec))
                }
            });

  It no longer works.

Any suggestions would be great.

Cheers!


Title: Re: combobox focus -
Post by: jarry on May 12, 2020, 12:15:48 AM
Please show a live example to demonstrate your issue.