- πΊπ¦Ukraine nnevill Lutsk
That works for version 8.x-1.3:
$form['my_select']['#select2'] = false;
So makes sense to add that at least to README.
There are times when we may not want to have select2 implemented on specific selects. There is the ability to suppress select2_all via a form alter, but it's not documented.
Create or find a select that has enough options that select2 activates, but as a user it may not make sense to have it as a select2.
Document how to disable select2 for specific fields using a form alter and adding the `$form['my_select']['#select2'] = false;`
Probably easy to document on the project page?
N/A
N/A
N/A
Active
1.0
Documentation
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.
That works for version 8.x-1.3:
$form['my_select']['#select2'] = false;
So makes sense to add that at least to README.