Jump to content

Key = 13 doesn't work with ListBox  "Bug Unigui ?"


Luciano França

Recommended Posts

8 hours ago, Luciano França said:

Is this some Unigui bug ?

Don't know. Perhaps this behavior is from sencha. You can open a ticket.

One of the possible workarounds for now. Try.

function afterrender(sender, eOpts)
{
    sender.boundList.addListener('itemkeydown', function(cmp, record, item, index, e, eOpts) {
        ajaxRequest(sender, 'keydown', {
            key: e.keyCode
        })
    });
}

 

Link to comment
Share on other sites

5 hours ago, Sherzod said:

Don't know. Perhaps this behavior is from sencha. You can open a ticket.

One of the possible workarounds for now. Try.

function afterrender(sender, eOpts)
{
    sender.boundList.addListener('itemkeydown', function(cmp, record, item, index, e, eOpts) {
        ajaxRequest(sender, 'keydown', {
            key: e.keyCode
        })
    });
}

 

 

The important thing is to work no matter how.

Much obliged.

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...