
Security News
MCP Community Begins Work on Official MCP Metaregistry
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
react-bootstrap-dropdown
Advanced tools
It's a react dropdown for bootstrap, named reactbsDropdown
The reactbsDropdown include all basic function in dropdown
include set title, listen change, disable item, disable dropdown, divier.
reactbsDropdown dependencies on react 0.13.x and Bootstrap 3
reactbsDropdown written by ES6 and use gulp and browserify to build
Use following command to prepare development
$ git clone https://github.com/AllenFang/react-bootstrap-dropdown.git
$ cd react-bootstrap-dropdown
$ npm install
Use gulp to build the reactbsDropdown
$ gulp dev #for development
$ gulp prod #for production
Download reactbsDropdown first.
npm install react-bootstrap-dropdown --save
Use reactbsDropdown in your react app
You can import reactbsDropdown in module(CommonJS/AMD)
var Dropdown = require("react-bootstrap-dropdown");
or in browser(window object)
<script src="path/to/react-bootstrap-dropdown/react-bootstrap-dropdown.min.js" />
the react-bootstrap-dropdown.min.js file you can find in the dist folder
After import reactbsDropdown, use it in your react app
You can find more detail example code in example folder
// a callback function will be called if dropdown item select
function select(item){
alert(item.text+","+item.value);
}
var aBasicItemModel = [
{
text: "Action",
value: "1"
}
//...
];
var aDividerItemModel = [
{
text: "",
value: "",
isDivider: true
}
//...
];
var aDisableItemModel = [
{
text: "Action",
value: "1",
disabled: true
}
//...
];
React.render(
<Dropdown
title="MyDropdown"
items={youItemsModel}
onSelect={select} />,
document.getElementById("example")
);
The reactbsDropdown setting
Use title
to specify the text show on the dropdown
Use item
to specify the dropdown items
Use onSelect
to listen a select event on dropdown
FAQs
It's a bootstrap dropdown for react.js
We found that react-bootstrap-dropdown demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer 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
The MCP community is launching an official registry to standardize AI tool discovery and let agents dynamically find and install MCP servers.
Research
Security News
Socket uncovers an npm Trojan stealing crypto wallets and BullX credentials via obfuscated code and Telegram exfiltration.
Research
Security News
Malicious npm packages posing as developer tools target macOS Cursor IDE users, stealing credentials and modifying files to gain persistent backdoor access.