Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

react-bootstrap-table-nextgen

Package Overview
Dependencies
Maintainers
1
Versions
22
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-bootstrap-table-nextgen

Next generation of react-bootstrap-table

  • 4.3.16
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

react-bootstrap-table-nextgen

Next generation of react-bootstrap-table-nextgen

Live Demo

Usage

Installation

npm install react-bootstrap-table-nextgen --save

Include CSS

react-bootstrap-table-nextgen need you to add bootstrap css in your application firstly. About bootstrap css, we only compatible with bootstrap 3 but will start to compatible for bootstrap 4 on v0.2.0

// es5
require('react-bootstrap-table-nextgen/dist/react-bootstrap-table-nextgen.min.css');

// es6
import 'react-bootstrap-table-nextgen/dist/react-bootstrap-table-nextgen.min.css';

Your First Table

import BootstrapTable from 'react-bootstrap-table-nextgen';

const products = [ ... ];
const columns = [{
  dataField: 'id',
  text: 'Product ID'
}, {
  dataField: 'name',
  text: 'Product Name'
}, {
  dataField: 'price',
  text: 'Product Price'
}];

export default () =>
  <BootstrapTable keyField='id' data={ products } columns={ columns } />

Keywords

FAQs

Package last updated on 24 Sep 2023

Did you know?

Socket

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.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc