Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 
rpm-mcarman b9f7ec4306 First Commit il y a 3 ans
..
dist First Commit il y a 3 ans
node_modules/react-select First Commit il y a 3 ans
src First Commit il y a 3 ans
LICENSE First Commit il y a 3 ans
README.md First Commit il y a 3 ans
index.js First Commit il y a 3 ans
package.json First Commit il y a 3 ans

README.md

react-data-grid-addons

A set of addons for react-data-grid with things like editors, formatters, toolbars, filters..

Install

npm install --save react-data-grid-addons

Usage

import { Editors, Formatters } from 'react-data-grid-addons';
const { DropDownEditor } = Editors;
const { DropDownFormatter } = Formatters;

const titles = ['Dr.', 'Mr.', 'Mrs.', 'Miss', 'Ms.'];
const columns = [
  ...
  { 
    key: 'titles',
    name: 'Titles',
    editor: <DropDownEditor options={titles} />,
    formatter: DropDownFormatter 
  },
  ...
];

Exports

This package exports:

name source
Editors Editors
Formatters Formatters
Toolbar Toolbar
ToolsPanel ToolsPanelCell
Data Data
Menu Menu
Draggable Draggable
Filters Filters