How to include jQuery Plugin chosen in modal dialog of the editor?

How to include jQuery Plugin chosen in modal dialog of the editor?

arlingerarlinger Posts: 3Questions: 2Answers: 1
edited March 2019 in Free community support

Hi,

in the modal dialog its possible to insert a selectbox for multiple select:

editor.add( {
    type:     'select',
    label:    'Locations:',
    name:     'locations',
    multiple: true,
    separator: ',',
    options: [
        { label: 'Edinburgh', value: 51 },
        { label: 'London',    value: 76 }
        // etc
    ]
} );

I want to change this to chosen.

But I have no idea how do do that?

best regards
Jo

This question has an accepted answers - jump to answer

Answers

This discussion has been closed.