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 Sep 28, 2020. It is now read-only.
I'm not sure if this is a bug or a configuration issue, but when I load the default sample of bootstrap-tokenfield on my page, the dropdown width looks like this:
On the list with id "ui-id-1", there is a strange style attached to it that sets this: "min-width: 98px; position: relative; top: 314px; left: 281px; width: 1132px; display: none;"
I have tried to modify the width in the debugger tool that I have but it keeps reverting and I am unable to find out where this value is set. I am unable to change the dropdown width via css as well.
Also, when an item is added to the token list, i have to defocus and focus on the input again before the dropdown will open. Is this a by default and is there a place where I can access this?
This is such a great addition to bootstrap and thank you for your work.
The text was updated successfully, but these errors were encountered:
el.tokenfield({
autocomplete: {
source: data,
minLength: minLength,
delay: delay,
open: function (event, ui) {
// make width of dropdown equals to width of input field
var _openDD = $("ul.ui-autocomplete.ui-widget-content:visible");
var _width = $(this).parent().width();
_openDD.width(_width);
}
},
delimiter: c_delimiter
});
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hi,
I'm not sure if this is a bug or a configuration issue, but when I load the default sample of bootstrap-tokenfield on my page, the dropdown width looks like this:
On the list with id "ui-id-1", there is a strange style attached to it that sets this: "min-width: 98px; position: relative; top: 314px; left: 281px; width: 1132px; display: none;"
I have tried to modify the width in the debugger tool that I have but it keeps reverting and I am unable to find out where this value is set. I am unable to change the dropdown width via css as well.
Also, when an item is added to the token list, i have to defocus and focus on the input again before the dropdown will open. Is this a by default and is there a place where I can access this?
This is such a great addition to bootstrap and thank you for your work.
The text was updated successfully, but these errors were encountered: