-
Notifications
You must be signed in to change notification settings - Fork 102
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WIP Issues/995 #1141
base: master
Are you sure you want to change the base?
WIP Issues/995 #1141
Conversation
String js = "$('#" + id + "').tagsinput();" + // | ||
"$('#" + id + "').attr('name','');"; | ||
String js = "$('#" + id + "').tagsinput();"; | ||
js += "$('#" + id + "').siblings('.bootstrap-tagsinput').addClass('form-control');"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with the update to 0.8.0 the bug with the 'name' was fixed, but there is a new bug fix a missing class
String inputId = fieldId; // input id | ||
inputId = inputId.replace(":", "\\\\:"); // escape the id for jQuery | ||
js += "$('#" + inputId + "').attr('name','');"; | ||
js += "$('." + escapedClientId + "').siblings('.bootstrap-tagsinput').addClass('form-control');"; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
with the update to 0.8.0 the bug with the 'name' was fixed, but there is a new bug fix a missing class
@@ -6,7 +6,9 @@ | |||
.bootstrap-tagsinput .twitter-typeahead { | |||
width: auto; | |||
float: none; | |||
position: relative !important; | |||
position: absolute !important; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@stephanrauh i have move the css from bootstrap-tagsinput.css to input-tags.css but i'm not sure if we need relative or absolute
No description provided.