vitalets / x-editable

In-place editing with Twitter Bootstrap, jQuery UI or pure jQuery
http://vitalets.github.io/x-editable
MIT License
6.51k stars 1.73k forks source link

[question] Select dblclick toggle #1184

Open ideiasfrescas opened 1 year ago

ideiasfrescas commented 1 year ago

Hello

I'm using the latest version of x-editable and I would like to know if anyone is having issues with dblclick to popup the editor

The select popup is working with "click" and i'm using the bootstrap version.

$(`#tabelas #${idNovo}`).find("span.editNewsletter").editable({
    type: 'select',
    value: "", 
    source: [
        {value: "Não", text: 'Não'},
        {value: "PT", text: 'PT'},
        {value: "EN", text: 'EN'}
    ],
    toggle: 'dblick'
});

I have about 1000+ selects but I trust it does not have anything to do with it.