react-toolbox/components/date_picker
Javi Velasco aead7f0a8f Add pickers classNames to customize appereance 2015-12-20 18:08:55 +01:00
..
Calendar.jsx Add react-toolbox attributes and className to DatePicker 2015-12-19 22:47:00 +01:00
CalendarDay.jsx Add react-toolbox attributes and className to DatePicker 2015-12-19 22:47:00 +01:00
CalendarMonth.jsx Add react-toolbox attributes and className to DatePicker 2015-12-19 22:47:00 +01:00
DatePicker.jsx Add pickers classNames to customize appereance 2015-12-20 18:08:55 +01:00
DatePickerDialog.jsx Add react-toolbox attributes and className to DatePicker 2015-12-19 22:47:00 +01:00
_config.scss Improve layout for calendar in firefox 2015-12-19 14:08:30 +01:00
index.js Remove jsx extension from imports in components 2015-11-28 20:24:46 +01:00
readme.md Add pickers classNames to customize appereance 2015-12-20 18:08:55 +01:00
style.calendar.scss Remove unneded scroll-x hidden 2015-12-19 14:08:30 +01:00
style.scss Fix scss linter errors and bugfix in snackbar 2015-11-18 01:15:07 +01:00

readme.md

Date Picker

A dialog date picker is used to select a single date. The selected day is indicated by a filled circle. The current day is indicated by a different color and type weight.

import DatePicker from 'react-toolbox/lib/date_picker';

const datetime = new Date(2015, 10, 16);
const min_datetime = new Date(new Date(datetime).setDate(8));
datetime.setHours(17);
datetime.setMinutes(28);

class DatePickerTest extends React.Component {
  state = {date2: datetime};

  handleChange = (item, value) => {
    this.setState({...this.state, [item]: value});
  };

  render () {
    return (
      <section>
        <DatePicker label='Birthdate' onChange={this.handleChange.bind(this, 'date1')} value={this.state.date1} />
        <DatePicker label='Expiration date' minDate={min_datetime} onChange={this.handleChange.bind(this, 'date2')} value={this.state.date2} />
      </section>
    );
  }
}

Properties

Name Type Default Description
className String This class will be placed at the top of the DatePickerDialog component so you can provide custom styles.
label String The text string to use for the floating label element in the input component.
maxDate Date Date object with the maximum selectable date.
minDate Date Date object with the minimum selectable date.
onChange Function Callback called when the picker value is changed.
placeholder String The text string to use like a input placeholder.
value Date Date object with the currently selected date.