![Create React App Officially Deprecated Amid React 19 Compatibility Issues](https://cdn.sanity.io/images/cgdhsj6q/production/04fa08cf844d798abc0e1a6391c129363cc7e2ab-1024x1024.webp?w=400&fit=max&auto=format)
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
patternfly-bootstrap-combobox
Advanced tools
This is a fork of danielfarrell/bootstrap-combobox v1.1.6 used for NPM packaging
We had need of a combobox at work and after looking around at the available options I was not happy with any of them. The project had all it's styling based on Twitter's Bootstrap, so building on that made sense.
You can install this plugin one of two ways.
Previously, this was the only way to install the plugin. You will need two files included in your HTML in order for this to work:
This plugin is now in bower! If you've already installed bower on your machine, simply use the command:
bower install bootstrap-combobox
This will install the plugin to your bower_components folder. For more information please see http://bower.io/
The dependencies are the Bootstrap stylesheet(CSS or LESS). Include it and then the stylesheet(CSS or LESS) and javascript.
Then just activate the plugin on a normal select box(suggest having a blank option first):
<select class="combobox">
<option></option>
<option value="PA">Pennsylvania</option>
<option value="CT">Connecticut</option>
<option value="NY">New York</option>
<option value="MD">Maryland</option>
<option value="VA">Virginia</option>
</select>
<script type="text/javascript">
$(document).ready(function(){
$('.combobox').combobox();
});
</script>
When activating the plugin, you may include an object containing options for the combobox
$('.combobox').combobox({bsVersion: '2'});
menu
: Custom markup for the dropdown menu list element.
item
: Custom markup for the dropdown menu list items.
matcher
: Custom function with one item
argument that compares the item to the input. Defaults to matching on the query being a substring of the item, case insenstive
sorter
: Custom function that sorts a list items
for display in the dropdown
highlighter
: Custom function for highlighting an item
. Defaults to bolding the query within a matched item
template
: Custom function that returns markup for the combobox.
bsVersion
: Version of bootstrap being used. This is used by the default template
function to generate markup correctly. Defaults to '3'. Set to '2' for compatibility with Bootstrap 2
appendId
: The desired id of the transformed combobox. This will become the id attr and can be mapped to a label using the for attribute. Useful for accessibility.
Uses the latest 1.X version of jQuery and the latest 2.X or 3.X of bootstrap.
http://dl.dropbox.com/u/21368/bootstrap-combobox/index.html
http://bootstrap-combobox-test.herokuapp.com/
Licensed under the Apache License, Version 2.0
FAQs
This is a fork of danielfarrell/bootstrap-combobox v1.1.6 used for NPM packaging
The npm package patternfly-bootstrap-combobox receives a total of 3,834 weekly downloads. As such, patternfly-bootstrap-combobox popularity was classified as popular.
We found that patternfly-bootstrap-combobox demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.