0.0.4 • Published 9 years ago

react-editable-div v0.0.4

Weekly downloads
24
License
ISC
Repository
github
Last release
9 years ago

Editable DIV

React Component that enables editable divs.

Source on github

Installation

% npm install react-editablev-div --save

Usage

Optionally send in 'editable' as true/false in cause you want to only want to set editable for certain users.

In the 'onChange' function, set up any method you want to store the new value.

Example

var Editable = require('react-editable-div');
MyComponent = React.createClass({
  onChange: function (e) {
      // Use either
      //console.log(e.target.value);
      // or:
      //console.log(this.refs.editable.getDOMNode().innerHTML);
  },

  render: function() {
     return (
        <Editable editable={this.state.editable}
                       html="<b>H</b>el<b>lo </b><i><b>W</b>or<b>l</b>d<b>!</b></i>"
                       ref="editable" onChange={this.onChange} />
    );
  }
});