You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 8, 2021. It is now read-only.
If one create Select component with a custom CSS class:
<selectid="s1" data-theme='a' data-icon='forward' data-native-menu="false" tabIndex="1" class='customclass'><optionvalue='Veni' selected="selected">
Veni
</option><optionvalue='Vidi'>
Vidi
</option><optionvalue='Vici'>
Vici
</option></select>
But unfortunately class assigned to original <select > element is not copied to button. JQM creates <a ...> element without class "customclass".
I think this is wrong behavior. It could be fixed adding
button.addClass(this.select.getAttr('class'));
after line 8065 in jquery.mobile-1.2.0.js
The text was updated successfully, but these errors were encountered:
If one create Select component with a custom CSS class:
Sample
Then JQM wraps this <select> component and creates <a ...> element before it.
See
jquery.mobile-1.2.0.js
at lines 8054-8065But unfortunately class assigned to original <select > element is not copied to button. JQM creates <a ...> element without class
"customclass"
.I think this is wrong behavior. It could be fixed adding
after line 8065 in
jquery.mobile-1.2.0.js
The text was updated successfully, but these errors were encountered: