bootstrap-combobox icon indicating copy to clipboard operation
bootstrap-combobox copied to clipboard

A combobox plugin that works with twitter bootstrap

Results 103 bootstrap-combobox issues
Sort by recently updated
recently updated
newest added
trafficstars

Hi, I didn't find any reference to a type definition file for this module (for Typescript). Can one be added? Thanks.

I was experiencing an issue where the jQuery ` this.$source.val(this.map[val]).trigger('change');` was not forcing the select to actually highlight the option as selected. I noticed it on the demo as well....

` Add options dynamically to bootstrap-select .dropdown-menu { -webkit-touch-callout: none; -webkit-user-select: none; -khtml-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; } .dropdown-menu a { overflow: hidden; outline: none; } .additem...

The width of the dropdown-menu is auto sized to fit its options. This is inconsistent with regular HTML5 select lists whose dropdown menu is as wide as the select element....

We're using bootstrap-combobox inside jqGrid with great success. However, on one of the pages, we need a combobox that will search a given list of items and if not found,...

There isn't anything currently when calling refresh(which calls parse) to clear the current selection if the new options don't have a selected option or the value that was there isn't...

Whenever an item is picked from the dropdown I get two Change Events. First blur clears the value and triggers change on source and target while also clearing them. Then...

I have a combobox with a lot of data, when i focus everything works ok i can search and lost focus and the dropdown close, the problem is when i...

In the transferAttributes method this condition is not failing when it should: ` if (this.options.appendId !== "undefined") { this.$element.attr('id', this.$source.attr('id') + this.options.appendId); } ` The correct code is ` if...

Hi , in the html template, please change autocomplete="false" to autocomplete="off". http://www.w3schools.com/tags/att_input_autocomplete.asp Thanks