I am having issues with row weight numbers not showing up when chosen is applied so, I am trying to exclude them from the list of selects that chosen is applied to.
So, I have this in the textarea for "Apply Chosen to the following elements"
.page-node select.form-select,.page-node select:not([class*='field_slides-delta-order'])
However selects with the class field_slides-delta-order are still having chosen applied. Am I doing something wrong? Thanks in advance.
Comments
Comment #2
brandy.brown commentedFigured it out, syntax needs to be .page-node select.form-select:not([class*='field_slides-delta-order'])
Comment #3
jasom commentedWhere I should put this ".page-node select.form-select:not([class*='field_slides-delta-order'])"? Into css file? JS? Where?
Update:
In my case I pasted string select:not([name*='countrycode']) inside text-area labelled Apply Chosen to the following elements under URL admin/config/user-interface/chosen.
Comment #4
bisonbleu commentedthanks @jasom, nice catch.
Comment #5
bassplaya commentedThanks!