Tab

Component grid for presenting tabular data with support for filtering and sorting, fully configurable and customizable. Supports list of items or charging request to the server via Ajax, actions by item or collection of items, internationalization and localization of column names and themes using materialize.

Props

themeClassKey String

Key assigned to the object specified in the theme settings.

default: 'tabs'

activeTab Number

Index of the active tab.

default: 1

Using Tabs

NOTICE: Required check the structure of the content of the tabs.

The basic structure is defined as the code below.

var CustomTab = React.createClass({
  render: function() {
    return
      <Tabs {...this.props}>
        <Tab>
          Custom tab 1
        </Tab>
        <Tab>
          Custom tab 2
        </Tab>
      </Tabs>;
  }
});