
Security News
AI Agent Lands PRs in Major OSS Projects, Targets Maintainers via Cold Outreach
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.
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
An AI agent is merging PRs into major OSS projects and cold-emailing maintainers to drum up more work.

Research
/Security News
Chrome extension CL Suite by @CLMasters neutralizes 2FA for Facebook and Meta Business accounts while exfiltrating Business Manager contact and analytics data.

Security News
After Matplotlib rejected an AI-written PR, the agent fired back with a blog post, igniting debate over AI contributions and maintainer burden.