table

Working With Tables in React, Part Two

Overview

This is part two of a two-part series about React-Bootstrap-Table. In part one we created a simple React application using react-create-app, added React-Bootstrap-Table, populated a table with data, worked with columns, styled the table, and selected rows. 

In this part we’ll continue the journey by expanding rows, adding rows, deleting rows, and covering pagination, cell editing, and advanced customization.

Expanding Rows

This is one of the coolest features of React-bootstrap-table. When displaying tabular data, there is often additional data you may want to see on one or two rows, but you can’t display all the data for all the rows. 

One option to address that is to show tooltips, but tooltips require that you hover with the mouse over the target area, and you can only see one tooltip at a time. Expanding rows let you display additional data for each row in a kind of drawer that stays expanded as long as you want, and you can collapse it back when you’re done. You can expand as many rows as you want at the same time. Here is how it’s done with React-bootstrap-table. 

The love map contains relationships between some Arrested Development characters: Gob loves Marta and Buster loves Lucile 2. The isExpandable() function controls which rows are expandable. In this case, it returns true for rows whose character name is in the love map. The expandRow() function returns a component when a row is expanded. 

The returned component is displayed below the row until the row is collapsed. Configuring row expansion is a little tricky. Some options are just props on the BootstrapTable component. 

The expand column options are one object prop, and then there is a prop called options that contains additional row expansion options like expandRowBgColor and expanding. It would be much simpler if there was just one prop called expandRowProp that contained all the options (like the selectRowProp).

The result of the above code

Pagination

So far we displayed just three rows of data. Tables are designed to display a lot of data that doesn’t necessarily fit on the screen at the same time. That’s where pagination comes in. React-bootstrap-table supports many pagination options. 

Let’s populate our table with 100 items, which will be ten pages of ten items each. We will use a getData() function that returns an array of 100 objects with ids, names, and values based on their index. 

Let’s also specify which page to display initially (4), customize the text for prev, next, first and last page (using Unicode arrows for extra coolness) and finally provide a custom function called showTotal() to display the total number of items. Note that the attribute for controlling the previous page button is called “prePage” and not “prevPage” (it got me). All the pagination options go into the general “options” attribute of the table. 

The resulting table of the code above

Adding and Deleting Rows

So far we used the table to display information in a variety of ways. But tables can be used as a user interface for manipulating data. Let’s see how to add and remove rows from a table. 

The key attributes are insertRow and deleteRow. When you specify them, “New” and “Delete” buttons are added. If you click the “New” button, a modal dialog opens up and lets you add new rows. If you click the “Delete” button, all selected rows are deleted. To delete rows, you must enable row selection, of course. You can also attach hook functions that are called after adding or deleting rows.

Adding and Deleting Rows

Cell Editing

Another form of data manipulation is in-place editing (a.k.a. cell editing). Cell editing can be triggered by a click or double-click. Cell editing is controlled by the “cellEdit” attribute. In addition to the mode, you can specify non-editable rows and hook functions. 

In the following code, the nonEditableRows function simply returns the row key 3, but could use a more sophisticated logic.

Editing Cells

Exporting Your Data

Sometimes, viewing your data and playing with it in a web UI is not enough, and you need to take your data and feed it to other tools. The way to do it with React-bootstrap-table is very simple. You just add the exportCSV attribute (and optionally a filename) and an export button is added. When you click the button, it allows you to save your data to a CSV file.

Exporting Data

Here is the exported data from our little table:

Customizing All the Things

We covered a lot of material, but React-bootstrap-table has a lot more in store. Practically, every aspect can be customized. Read the full documentation on how to customize a table.

Here is a list of the customizable parts:

  • Cell
  • Toolbar
  • Insert Modal
  • Pagination
  • Column Filter
  • Cell Editing
  • Row Selection Column

Conclusion

React-bootstrap-table packs a powerful punch. It provides out of the box a pleasant user interface for displaying, searching and manipulating tabular data. The API is very consistent—major features can be enabled by specifying a simple attribute and optionally customized with additional attributes that often can be dynamic functions. 

While the default behavior and the basic configuration should satisfy most users, if you need more advanced features and customization, there is ample documentation and examples how to go about it.

Over the last couple of years, React has grown in popularity. In fact, we have a number of items in the marketplace that are available for purchase, review, implementation, and so on. If you’re looking for additional resources around React, don’t hesitate to check them out.

Powered by WPeMatico

Leave a Comment

Scroll to Top