Socket
Socket
Sign inDemoInstall

bootstrap-table

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bootstrap-table

An extended table to integration with some of the most widely used CSS frameworks. (Supports Bootstrap, Semantic UI, Bulma, Material Design, Foundation)


Version published
Weekly downloads
110K
decreased by-5.99%
Maintainers
1
Weekly downloads
 
Created

What is bootstrap-table?

The bootstrap-table npm package is a powerful library for creating dynamic, responsive, and feature-rich tables using Bootstrap. It provides a wide range of functionalities such as sorting, pagination, searching, and more, making it easy to manage and display large datasets in a user-friendly manner.

What are bootstrap-table's main functionalities?

Basic Table Initialization

This code initializes a basic table with three columns (ID, Name, Price) and two rows of data. The table is created using the bootstrapTable method, which takes an object with columns and data properties.


$(document).ready(function() {
  $('#table').bootstrapTable({
    columns: [{
      field: 'id',
      title: 'ID'
    }, {
      field: 'name',
      title: 'Name'
    }, {
      field: 'price',
      title: 'Price'
    }],
    data: [{
      id: 1,
      name: 'Item 1',
      price: '$1'
    }, {
      id: 2,
      name: 'Item 2',
      price: '$2'
    }]
  });
});

Pagination

This code demonstrates how to enable pagination in a bootstrap-table. The pagination property is set to true, and the pageSize property is set to 5, meaning the table will display 5 rows per page.


$(document).ready(function() {
  $('#table').bootstrapTable({
    pagination: true,
    pageSize: 5,
    columns: [{
      field: 'id',
      title: 'ID'
    }, {
      field: 'name',
      title: 'Name'
    }, {
      field: 'price',
      title: 'Price'
    }],
    data: [
      { id: 1, name: 'Item 1', price: '$1' },
      { id: 2, name: 'Item 2', price: '$2' },
      { id: 3, name: 'Item 3', price: '$3' },
      { id: 4, name: 'Item 4', price: '$4' },
      { id: 5, name: 'Item 5', price: '$5' },
      { id: 6, name: 'Item 6', price: '$6' }
    ]
  });
});

Search Functionality

This code adds a search box to the table, allowing users to filter the table data based on their input. The search property is set to true to enable this functionality.


$(document).ready(function() {
  $('#table').bootstrapTable({
    search: true,
    columns: [{
      field: 'id',
      title: 'ID'
    }, {
      field: 'name',
      title: 'Name'
    }, {
      field: 'price',
      title: 'Price'
    }],
    data: [
      { id: 1, name: 'Item 1', price: '$1' },
      { id: 2, name: 'Item 2', price: '$2' },
      { id: 3, name: 'Item 3', price: '$3' },
      { id: 4, name: 'Item 4', price: '$4' },
      { id: 5, name: 'Item 5', price: '$5' },
      { id: 6, name: 'Item 6', price: '$6' }
    ]
  });
});

Sorting

This code enables sorting for each column in the table. The sortable property is set to true for the table and each column, allowing users to sort the data by clicking on the column headers.


$(document).ready(function() {
  $('#table').bootstrapTable({
    sortable: true,
    columns: [{
      field: 'id',
      title: 'ID',
      sortable: true
    }, {
      field: 'name',
      title: 'Name',
      sortable: true
    }, {
      field: 'price',
      title: 'Price',
      sortable: true
    }],
    data: [
      { id: 1, name: 'Item 1', price: '$1' },
      { id: 2, name: 'Item 2', price: '$2' },
      { id: 3, name: 'Item 3', price: '$3' },
      { id: 4, name: 'Item 4', price: '$4' },
      { id: 5, name: 'Item 5', price: '$5' },
      { id: 6, name: 'Item 6', price: '$6' }
    ]
  });
});

Other packages similar to bootstrap-table

Keywords

FAQs

Package last updated on 29 Apr 2024

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